
- Forum
- Programming Talk
- ASP
- How to Handle
How to Handle
This is a discussion on How to Handle within the ASP forums, part of the Programming Talk category; I have tried in ASP by adding elements to a form to store and return the information needed by me ...
-
How to Handle
I have tried in ASP by adding elements to a form to store and return the information needed by me when the form is posted back to the server. But how should I handle this in ASP.NET. Kindly give me guidelines for handling this scenario in ASP.NET.
-
05-28-2007, 03:29 AM #2
- Join Date
- Apr 2006
- Answers
- 124
In ASP.NET the process you have mentioned is automated. In ASP.NET each time the form gets posted back to server the web form gets rebuilt automatically. Suppose you like the form to retain the look it had when sent by the user during the rebuild process you can make use of ViewState control of ASP.NET which stores the information between round trips between the client and the server.

Reply With Quote





