I'm tired of including
EnableViewStateMac="false"
in every page. How to do that globally?
I'm tired of including
EnableViewStateMac="false"
in every page. How to do that globally?
You can disable it on the <pages>
element in the web.config, like this:
<configuration>
<system.web>
<pages enableViewStateMac="False" />
</system.web>
</configuration>