views:

101

answers:

1

I'm tired of including

EnableViewStateMac="false"

in every page. How to do that globally?

+5  A: 

You can disable it on the <pages> element in the web.config, like this:

<configuration>
  <system.web>
    <pages enableViewStateMac="False" />
  </system.web>
</configuration>
Nick Craver