I have the following scenario: I have a View (typed eg: produto {codigo, descricao, quantidade, qtdeRecebida}
) where a table is loaded. In this View, besides the table, I still have a textbox and a button. When the user informs the product and clicks the button I need to execute a method that is in the Product class (CodeBehind) that makes the qtdeRecedida
increment and dynamically updates the table. What is the solution to this? Does anyone have a similar example?
Note: I am a beginner and this scenario is being developed in ASP.Net MVC 4.