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
What is value type and refernce type in .net?
What is typical about a windows process in regards to memory allocation in dot net?
What is the base class of Button control in .NET?
Conceptually, what is the difference between early-binding and late-binding?
Which Namespace is used to to achieve MultiThreading in .NET?
Explain assemblies in .net?
Do you know what is garbage collector?
What is an interface and what is an abstract class? Please, expand by examples of using both. Explain why?
What is Code group in .Net with respect to CAS
Explain what is reflection in microsoft .net context?
Explain what is a manifest in .net?
What method do you use to explicitly kill a users session? How?
Explain how to redirect tracing to a file?
What is the use of immutability?
What are the different.net tools which you used in projects?