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 websites use asp.net?
What is clr? Difference between clr & cts?
Explain what is viewstate?
List some of the important session state modes of asp.net.
What is a swagger in web api?
Can you use Web API with ASP.NET Web Form?
What is Pre-Render event in ASP.NET?
What is asp.net version?
How will create assesblies at run time?
What is role-based security in asp.net?
About CLR, reflection and assemblies?
What are client activated objects?
Describe the difference between inline and code behind - which is best in?
Describe session handling in a webfarm, how does it work and what are the limits?
Explain diff between dataset and datareader?