-1

I need to decode a viewstate value in asp.net framework 2. How can I do that?

I tried to use Fiddler2 extention but it didn't help me.

Thank you!

user3226885
  • 25
  • 1
  • 2

1 Answers1

0

ViewState is simply base64 encoded value. Here is option Fritz Onion. You probably will not be able to directly modify the ViewState (i.e. outside of code) because ASP.NET has checks in place to specifically ensure that nothing has tampered with the ViewState. See the EnableViewStateMAC setting for more.

Sid
  • 801
  • 8
  • 19