siddheshwar


{ City } pune
< Country > india
* Profession * web debeloper
User No # 42412
Total Questions Posted # 0
Total Answers Posted # 2

Total Answers Posted for My Questions # 0
Total Views for My Questions # 0

Users Marked my Answers as Correct # 4
Users Marked my Answers as Wrong # 0
Questions / { siddheshwar }
Questions Answers Category Views Company eMail




Answers / { siddheshwar }

Question { Wipro, 6675 }

about view state and how validation controls will be
executed on client and server


Answer

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

Question { Wipro, 5327 }

Which template must you provide, in order to display data in
a Repeater control?


Answer

Item Template

Is This Answer Correct ?    1 Yes 0 No