HTTP Module to Move View State to Bottom of ASP.Net Pages
One of the problems with ASP.Net forms is that they can create enormous view state data chunks that reside in your HTML source, usually above your rich content. Many SEO experts believe this can interfere with Google, Yahoo, Bing and other search spiders from properly indexing your page's most important content.
Our View State Mover solution is an HTTP module that is nearly plug-n-play for most ASP.Net websites. Simply add a reference to the component in your web.config file and now instead of your view state appearing at the top of your form, it will move to the bottom just before your closing </form> tag.
Yes, it really is that easy!
IIS 6
- <httpModules>
- <add name="ViewstateModule" type="InetSolution.Web.HttpModules.
ViewstateModule, InetSolution.Web.HttpModules"/> - </httpModules>
IIS 7
- <modules>
- <add name="ViewstateModule" type="InetSolution.Web.HttpModules.
ViewstateModule, InetSolution.Web.HttpModules"/> - </modules>
Moving View State on ASP.Net Website using InetSolution's View State Pusher HTTP Module.
Buy Now:
You can purchase a license for your own site for $99.95. This will allow you to use the module on a local site (i.e., 'localhost'), one test URL (i.e., test.mysite.com) and one live URL (i.e., www.mysite.com).

