I have textboxes when the user write information in those text box and then press submit button the data on that text boxes are loose ? is there any solution ? why this this data not persist after submitt like in ASP net Web form here is the code :
the View:
<% Html.BeginForm(); %>
<!-- Form content goes here -->
Product Name: <%=Html.TextBox("textField") %>
QTY: <%=Html.TextBox("textField") %>
<input type="submit" value="Validate in Store" >
<% Html.EndForm(); %>
So when the user inser Product Name & QTY and then press on "Validate in store" the data in View is loose.
Regards
Nahed