Answer Posted / santosh kakani
ViewState is used to maintain state between 2 subsequent
resuests to same page by same client
example
int i=10
ViewState.add("key",i) // here i is value
to retrive view state
int j = Convert.toInt32(ViewState["key"]);
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
How anonymous method is different from a lambda expression?
Tell me about secure socket layer? How to make use of the technology?
What is singleton activation mode in .net?
What is web.config in .net?
Explain the top .net class that everything is derived from?
What is msil, il?
what is the meaning silverligt control
How to spawn a thread?
Explain about the Common Language Runtime?
What is namespace in .net?
What are the different.net tools which you used in projects?
What is lambda expressions in c#?
How to convert a .NET object into COM operabililty?
How does cas works?
How does the generational garbage collector in the .net clr manage object lifetime? What is non-deterministic finalization?