What is a PostBack?
What is ViewState? How is it encoded? Is it encrypted? Who
uses ViewState? Why is it either useful or evil?
Answer Posted / sahil dua
PostBack is the name given to the process of submitting an
ASP.NET page to the server for processing . PostBack is
done if certain credentials of the page are to be checked
against a database (such as verification of username and
password). This is something that a client machine is not
able to accomplish and thus these details have to
be ‘posted back’ to the server.
Viewstate is a collection of name/value pairs, where
control's and page itself store information that is
persistent among web requests.
| Is This Answer Correct ? | 8 Yes | 4 No |
Post New Answer View All Answers
What are the different types of sessions in asp.net?
What are the 3 levels at which content pages can be attached to Master Page?
Let's say I have an existing application written using vb6 and this application utilizes windows 2000 com+ transaction services. How would you approach migrating this application to.net?
Which type if caching will be used if we want to cache the portion of a page instead of whole page?
What is event in asp.net?
What are url fragments?
how to transfer the file from client to server using asp.net
Explain what does wsdl stand for?
What is the state management in asp.net?
Define a static class?
Do session use cookies in asp net?
How can we use Web API with ASP.NET Web Form?
What methods are fired during the page load? Init()
What is query string? What are its advantages and limitations?
What is Bundling and Minification in MVC?