InterviewSolution
Saved Bookmarks
| 1. |
Explain the meanings of postback and view state. |
|
Answer» The process of submitting an ASP.NET page to the server for the purpose of processing, this process is called Postback. When some credentials of a page are to be checked in REFERENCE to some page, at that time Postback is DONE. The values of a WEB page and the controls between the ROUND trips can be preserved, the method used to preserve it is called View State. |
|