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
Types of evidence in .net with context to CAS
Tell us what is the native image generator?
How to Create and Consume a Web Service?
What are the differences between user control and server control?
Why SOAP is required?
What is .net environment?
Using com component in .net?
What is func in .net 3.5?
What is Polymorphism? How does VB.NET/C# achieve polymorphism?
How many design patterns can be created in .net?
How many types of design patterns available in .NET?
What is lazy initialization?
Describe session handling in a webform, how does it work and what are the limitations?
What does msil do?
Explain me difference between public and static modifiers?