How to disable viewstate for aspx page?

joepine

New Member
I need to completely disable viewstate for an aspx page inside my web application. I have gone through different blogs and what I understand is that we must set \[code\]<%@ Page EnableViewState="false" ...%>\[/code\] . But this is not working. My question is, wheteher this is enough to disable viewstate for all the controls inside the page? Or Should i make any additional modifications? Please specify if any. I dont want viestate enabled for even a single control inside the aspx page
 
Back
Top