Invalid viewstate error

前端 未结 9 789
盖世英雄少女心
盖世英雄少女心 2021-01-31 05:19

I\'m getting an invalid viewstate error with regard to the ScriptResource.axd. Just wondering if anyone of you could help me on this. Error is:

2009-02-24 09:46:30,02         


        
9条回答
  •  Happy的楠姐
    2021-01-31 05:45

    I would suggest looking at this...it basically outlines some cases where this can happen depending on the doctype. We had a similar issue, and it seemed to only show up erratically...for us it was a conflict between our XHTML doctype and the javascript we had on the page. We were able to solve it by insuring that all of our javascript was correctly wrapped in tags.

    
    

    would become

    
    

    This may not be an identical issue, but if you have an xhtml doctype, look to see if you have unescaped characters that are not legal XML somewhere (such as '<' characters).

提交回复
热议问题