I'm occasionaly getting the following popup from an AJAX.NET application

Sys.WebForms.PageRequestManagerServerErrorException: An Unknown error occurred while processing the request on the server. The status code returned from the server was: 12031

From the Microsoft kb that status code indicates a ERROR_INTERNET_CONNECTION_RESET, but it doesn't state what was the underlying issue the triggered the error in the first place.

How can I log/trace/etc the underlying error that generated the popup?

link|improve this question

40% accept rate
feedback

6 Answers

up vote 11 down vote accepted

It's a viewstate problem, but not related with time but with size. Try playing with maxRequestLength in your web.config.

link|improve this answer
Thanks for pointing me in the right direction. I was finally able to fix the problem by writing the ViewState to the DB, instead of sending it in the page to the browser. – bastos.sergio Jun 3 '09 at 14:04
feedback

If you're getting that from an updatePanel, set EnablePartialRendering to false in the ScriptManager for the page, and then it should give you the actual error.

Also, if it only happens occasionally, I've found that it could be a viewstate problem, especially when the page goes a long time (20mins or so) between refreshes.

Otherwise, try some try/catch blocks. Those are some easy methods.

Hope that helps!

link|improve this answer
"set EnablePartialRendering to false" helped me find the error, thanks! – Homer Jul 28 '10 at 15:34
Helped me too, thanks! – Biff MaGriff Aug 17 '10 at 20:41
It helped me too -- thanks! – Jon DellOro Jun 29 '11 at 23:15
It worked ... :) – Paddy Dec 14 '11 at 6:46
feedback

sometimes the error occurs if you have added a server SSL certificate(https).If the certificate is not valid it will give this error.

link|improve this answer
feedback

I've got this error in UpdatePanel with autopostback Dropdown after big delay (>20 min) between change dropdown selection.

Try increase session timeout in web.cofig. For example:

<sessionState mode="InProc" cookieless="true" timeout="720"/>;
link|improve this answer
feedback

I had the following error happening on postback.

"Error: Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server."

but for me the issue was that I am converting my project from ASP.NET 2.0 to ASP.NET 4.0 and I had used on the page.

I took off the (for the time being), then ran the page to get the exact error. Which was "A potentially dangerous Request.Form value was detected"

I found that even though I have ValigateRequest="false" on the page, ASP.NET 4.0 requires you to add requestValidationMode="2.0" in the HttpRuntime tag in web.config.

Reference: http://www.codeproject.com/Tips/297679/A-potentially-dangerous-Request-Form-value-was-det.

Hope this helps.

link|improve this answer
feedback

add <httpRuntime requestValidationMode="2.0"/>
in web.config and in YourPage.aspx set (ClientIDMode="Static" ValidateRequest="false")

::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::::

EXAMPLE: web.config

   <?xml version="1.0"?>
<!--
  For more information on how to configure your ASP.NET application, please visit
  http://go.microsoft.com/fwlink/?LinkId=169433
  -->
<configuration>
  <system.web>
    <httpRuntime requestValidationMode="2.0"/>
    <compilation debug="true" targetFramework="4.0">
      <assemblies>
        <add assembly="System.Data.Entity, Version=4.0.0.0, Culture=neutral, PublicKeyToken=B77A5C561934E089"/>
      </assemblies>
    </compilation>

  </system.web>


  <connectionStrings>
    <add name="WT_ZadnjiEntities" connectionString="metadata=res://*/DAL.Model.csdl|res://*/DAL.Model.ssdl|res://*/DAL.Model.msl;provider=System.Data.SqlClient;provider connection string=&quot;data source=SATELLITE-PC;initial catalog=WT_Zadnji;integrated security=True;multipleactiveresultsets=True;App=EntityFramework&quot;" providerName="System.Data.EntityClient" />
  </connectionStrings>
</configuration>
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.