"Bruce Barker" <brubar_nospamplease_ (AT) safeco (DOT) com> wrote
Quote:
it encrypted to prevent hacking. create your own hidden field your client
script to write to.
-- bruce (sqlwork.com)
"Vik" <viktorum@==yahoo.com==> wrote in message
news:Okao4DqwFHA.3588 (AT) tk2msftngp13 (DOT) phx.gbl...
Is it possible to manage the ViewState by a script?
Thanks. |
This is not true. The ViewState (by default) is not encrypted...the
ViewState statebag object is serialized to XML (which would be too much
bloat for a web application). After being serialized to XML, it is then
converted to a Base64 string. Using a client-side script to convert from
Base64 to the original xml string would produce the desired results (you
would then parse the XML data).
HTH!
Mythran