about view state and how validation controls will be
executed on client and server
Answers were Sorted based on User's Feedback
View state is the object which is used to store the values
of a particular page during postback.It stores the values
in a hidden form field in form of string.And if again page
is loaded then it reloads the values of the controls on
particular page from the viewstate.Validation controls are
execute on clien-side.They contains isValid property which
is used to valid the control.Then it executes on the server.
Is This Answer Correct ? | 7 Yes | 0 No |
Answer / 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 |
Answer / zohaib shahid
The validation can be handeled on client side as well as on
the server side, and depends on the situation. Although the
client side validation can be handeled by the Java Script..
Is This Answer Correct ? | 0 Yes | 4 No |
What are the types of authentication in asp.net?
When was asp.net released?
Differences between VB.Net and C#, related to OOPS concepts
What do you mean by query string?
What is protected configuration?
What is Boxing and Unboxing?
7 Answers Accenture, IBM, Tech Mahindra,
How does exception management works in ASP.NET?
Why Global.asax is used?
What are the properties of the eventargs argument when capturing keyboard events?
What is the use of express session?
Can you explain the importance of finalize method in .net?
What is Http handler?