I have a site that features some pages which do not require any post-back functionality. They simply display static HTML and don\'t even have any associated code. H
ViewState is added only if an asp:Form is present in the page. Remove the Form, and the hidden field will not be rendered.
Beware: By doing this, you are also renouncing to have server-side event handlers, or any kind of PostBack events.