asp.net - Programmatical ViewState -


view state can store page value @ time of post (sending , receiving information server) of page. view state stored value of page controls string hashed , encoded in hashing , encoding technology. can see in page.

my question : can declare programmatically view state in code behind , during round trip ,where maintain in page life cycle, can see in page?

all viewstate stored in hidden field on page. view source , see hidden field called viewstate. it's typically base64 encoded. if want see in clear text can base64 decode content of hidden field


Comments

Popular posts from this blog

c# - DetailsView in ASP.Net - How to add another column on the side/add a control in each row? -

javascript - firefox memory leak -

Trying to import CSV file to a SQL Server database using asp.net and c# - can't find what I'm missing -