use view state
-
hi all, 1. i am want to know what is viewstate in asp.net. 2. how can i use viewstate 3. how much data take in viewstate vipin paliwal
-
hi all, 1. i am want to know what is viewstate in asp.net. 2. how can i use viewstate 3. how much data take in viewstate vipin paliwal
vipinpaliwal1980 wrote:
1. i am want to know what is viewstate in asp.net.
ViewState is an object use for save the state of server controls in webpage.
vipinpaliwal1980 wrote:
2. how can i use viewstate
vipinpaliwal1980 wrote:
3. how much data take in viewstate
I don't know exactly
-
hi all, 1. i am want to know what is viewstate in asp.net. 2. how can i use viewstate 3. how much data take in viewstate vipin paliwal
You can read more about the ASP.NET View State[^] in MSDN. Since the ViewState uses the hidden field to save data at the client side, so IMO the size limit of the ViewState should rely on the size of the hidden field, and you should not abuse the ViewState to contain a huge amount of data. For more information, you can see ASP.NET State Management Recommendations [^]