views:

49

answers:

1

I want to extract information in the viewstate of a child control. This control belongs to a third party and i do not have access to the source code. Is this possible?

+3  A: 

The viewstate is stored as base64. If you can get the clientID of the control; you can mine it out from Form.Post["__VIEWSTATE"] by decoding it, and process it from there.

Gurdas Nijor