Answer Posted / sivadatta kodali
This concept comes in the state management.For Asp.net
server controls implicitly the state of control will be
maintained with the support of viewstate.View state will
maintain some information at the Html Hiddenfield and the
will be Encrypted.
If u want to set the value explicitly.
viewstate["Key"]=value;
If u want to Read the value from the viewstate
viewstate["key"].Tostring();
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
What is ispostback property?
What role “#&&” plays in a querysting?
If I am developing an application that must accomodate multiple security levels though secure login and my asp.net web application is spanned across three web-servers (using round-robin load balancing). What would be the best approach to maintain login-in state for the users?
What does uri mean?
Describe how passport authentication works.
What is asp.net globalization?
What are the versions of garbage collection?
how to retrieve property settings from xml .config file.
What is difference between ispostback and autopostback in asp net?
Describe the difference between inline and code behind - which is best in a?
Can we handle the error and redirect to some pages using web.config?
How can we register exception filter globally?
What is an asp.net web form?
How would you turn off cookies on a page of a website?
Why cyclomatic complexity is important?