tags:

views:

314

answers:

2
+1  A: 

It can cause excessive page weight but this will not hurt your standing with the search engines. ViewState is stored in a hidden input which are mainly ignored by search engines.

Andrew Hare
+5  A: 

some search engines only process the first few KBs of the page if the page size is large. As viewstate is a hidden input at the top of the form/page this can impact SEO as the actual content of the page may not get fully processed by the search engine if there is too much viewstate. Look into moving the viewstate to the bottom of the page.

http://www.hanselman.com/blog/MovingViewStateToTheBottomOfThePage.aspx

Damien McGivern
Granted, with the additional point that if your viewstate is this large on a public internet site you probably want to think about how to trim it down to save on bandwidth and make your app seem snappier.
Joel Coehoorn
Thanks.The KB issue does make sense for long pageviews.
amoeba