We have a bunch of websites running out of the same group of servers (same app, just differentiated by hostname, etc). I periodically get an exception with the following stack trace.
Exception details (if available): System.FormatException: Input string was not in a correct format.
at System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal)
at System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info)
at System.Int32.Parse(String s, NumberStyles style, IFormatProvider provider)
at System.Convert.ToInt32(String value, IFormatProvider provider)
at System.Web.UI.Page.get_RequestViewStateString()
I have not been able to replicate this issue on my dev machine without tampering with the Viewstate _VIEWSTATEFIELDCOUNT field (I figured out that it was this one because of information made available at TypeDescriptor.Net). Anyway, putting a non-numeric value in this field creates an exception with this same stack trace (this is the only place in that function that I'm seeing Convert.ToInt32 being called). So, I'm wondering if this is a hack attempt, browser bug, or something else.
We're currently not doing any gyrations with ViewState. The page on which the error is occurring most frequently does have a metric crap-ton of viewstate data on it - is it possible that the amount of data is causing a browser issue or something?