Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

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


Please Help Members By Posting Answers For Below Questions

Is xml tags are case sensitive?

871


What is a interface in c#?

985


What does void do in c#?

945


Explain the difference between const and static read-only?

982


What do you know about WM_CHAR message?

960


Why do we use virtual methods in c#?

931


Is dictionary a collection?

841


Are there constructors in c sharp?

946


What is arraylist class in c#?

1066


What do you understand by 'access specifiers' in C#?

877


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; } }

4317


what is the difference between a struct and a class in c#?

1133


What is a protected class c#?

877


Why dictionary is used in c#?

936


Explain the difference between pass by value and pass by reference.

937