How to turn off View state encryption for an individual page
Software developer can turn off encryption for an individual page using ViewStateEncryption-Mode property of the Page directive:
<%@Page ViewStateEncryptionMode=”Never”>
The developer can set the same attribute in a configuration file:
<configuration xmlns …