Sys.WebForms.PageRequestManagerServerErrorException 12031

戏子无情 提交于 2020-01-28 04:08:45

问题


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?


回答1:


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




回答2:


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!




回答3:


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"/>;



回答4:


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>



回答5:


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




回答6:


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 <asp:UpdatePanel runat="server"> used on the page.

I took off the <asp:UpdatePanel runat="server"> (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 ValidateRequest="false" on the page, ASP.NET 4.0 requires you to add requestValidationMode="2.0" in the HttpRuntime tag of web.config.

<httpRuntime maxRequestLength="102400" requestValidationMode="2.0"/>

Reference



来源:https://stackoverflow.com/questions/239669/sys-webforms-pagerequestmanagerservererrorexception-12031

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!