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 is the difference between stored procedure vs function?
What are the Types of session management in ASP.NET
List the major built-in objects in asp.net?
Why do we need url encoding?
What are validator? Name the validation controls in asp.net? How do you disable them?
What is application session?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
If you want to write your own dot net language, what steps you will you take care?
Mention the namespace that is used to include .net data provider for sql server in .net code?
Explain how does asp page work?
If Instancing = Single use for ActiveX Exe, how will this be executed if there are 2 consecutive client requests ?
How to implement form based authentication in asp.net application?
What is a uri query?
What is use of <% %> in asp.net?
Is there any limit for query string? Means what is the maximum size?