I have a GridView that is inside of an UpdatePanel. I am using the RowCommand event to insert data, but currently if an exception is thrown, it is not being written to the trace like I want. Is there a way I can output the exception message when using the asynchronous postback?
Share
I’ve struggled with something like this before. If, in your ScriptManager tag, you turn off Partial Page Rendering,
you should then see the ASP.NET YSOD which should enable you to diagnose the problem. Turn partial rendering back on once you’ve fixed it.