I have following code which only works for first time page is hit. <%= Html.TextBox("Amount",Model.Amount)%>
In above line, debugger shows property calls to get Model.Amount each time the view is being generated. But updated value of Amount is not reflected in generated HTML.
Help