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
Post a Comment