about view state and how validation controls will be
executed on client and server
Answer Posted / siddheshwar duchal mob- +91 97
ViewState allows the state of objects (serializable) to be
stored in a hidden field on the page. ViewState is
transported to the client and back to the server, and is not
stored on the server or any other external source. ViewState
is used the retain the state of server-side objects between
postabacks.
Item stored in ViewState exist for the life of the current
page. This includes postbacks (to the same page).
"EnableViewState" :- It allows the page to save the users
input on a form across postbacks. It saves the server-side
values for a given control into ViewState, which is stored
as a hidden value on the page before sending the page to the
clients browser. When the page is posted back to the server
the server control is recreated with the state stored in
viewstate.
The validation can be handeled on client side.
| Is This Answer Correct ? | 3 Yes | 0 No |
Post New Answer View All Answers
What would be salary for 8+ years of experience in ASP.NET in different metro city in india?
What is the difference between page-level caching and fragment caching?
How do you do client-side validation in .net? How to disable validator control by client side javascript?
What are main return types supported in Web API?
What is the difference between asp.net and mvc?
Explain the benefits of viewstate?
What are the advantages of using Master Pages?
What is session and cookies in asp.net?
Explain Authentication mechanism in dotnet
Which namespace is used by ado.net?
Should I delete cookies?
What is the difference between stored procedure vs function?
How many types of validation are there?
What is application variable in asp.net?
When maintaining session through sql server, what is the impact of read and write operation on session objects?