Topic: ASP.Net
3 Ways to disable Viewstate in ASP.Net
1) Machine wide
add the below line in machine.conf
<pages enabledViewState="false" />
2) Page wide
<%@ Page EnableViewState="false" %>
3) control wide
yourControl.EnableViewState = false;
Posted by Renugopal D
at 3:45 AM