what is the lifespan of the items stored in viewstate ?
Answer Posted / bhawesh
Item stored in ViewState exist for the life of the current
page. Or the life of a page till postback.
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Is xml tags are case sensitive?
What is a interface in c#?
What does void do in c#?
Explain the difference between const and static read-only?
What do you know about WM_CHAR message?
Why do we use virtual methods in c#?
Is dictionary a collection?
Are there constructors in c sharp?
What is arraylist class in c#?
What do you understand by 'access specifiers' in C#?
what will be the output of the given below coding. using System; public class Exercise { static void OddNumbers(int a) { if (a >= 1) { Console.Write("{0}, ", a); a -= 2; OddNumbers(a); } } public static int Main() { const int Number = 9; Console.WriteLine("Odd Numbers"); OddNumbers(Number); Console.WriteLine(); return 0; } }
what is the difference between a struct and a class in c#?
What is a protected class c#?
Why dictionary is used in c#?
Explain the difference between pass by value and pass by reference.