Disable ViewState on ASPX or Folder

In web.config file go to <configuration> tag  and set here


<
location path="YourFolderName">
   <
system.web>
       <
pages enableViewState="false"/>
    </
system.web>
</
location>