I'm running an ASP.NET project on IIS locally, and an exception is getting reported back to the web browser after a postback has been handled.
In VS2010, if I look at Debug->Exceptions..., every exception type is checked to break when thrown.
Here's the exception I'm seeing in my browser popup:
Line: 868 Error: Sys.WebForms.PageRequestManagerServerErrorException: Input string was not in a correct format.
Here's the response back to the browser I got from Fiddler:
41|error|500|Input string was not in a correct format.|
Of course I googled, and most posts say that attempting to parse a string to an int can cause this. I don't think I'm doing anything like that.
======Edit=======
Removed updatepanel, and now I get:
[FormatException: Input string was not in a correct format.]
System.Number.StringToNumber(String str, NumberStyles options, NumberBuffer& number, NumberFormatInfo info, Boolean parseDecimal) +12630469
System.Number.ParseInt32(String s, NumberStyles style, NumberFormatInfo info) +224
System.Web.UI.WebControls.GridView.HandleEvent(EventArgs e, Boolean causesValidation, String validationGroup) +483
System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) +3691
=================
thanks, Mark