• 在使用updatepanel 时,上传到服务器出现如下错误: Sys.WebForms.PageRequestManagerServerErrorException: 在服务器上处理请求时出现未知错误。服务器返回的状态码为: 500


    在使用updatepanel 时,上传到服务器出现如下错误:
    Sys.WebForms.PageRequestManagerServerErrorException: 在服务器上处理请求时出现未知错误。服务器返回的状态码为: 500

    解决办法:

    一般的原因都是页面存在潜在的危险字符 在 页首加入 ValidateRequest="false"

    如下:

    <%@ Page Language="C#" MasterPageFile="~/MasterPages/CompanyManage.master" CodeFile="CompanyIntroEdit.aspx.cs" Inherits="CompanyIntroEdit" Title="Untitled Page" ValidateRequest="false" %>


    其他解决办法:

    在Web.Config
    <system.web>
    <pages enableEventValidation="false"/>
    </system.web>
    Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500

    在 ScriptManager 内添加 EnablePartialRendering="false" 显示详细的错误信息。

    如下:
    <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePartialRendering="false"/>

    一般的原因都是页面存在潜在的危险字符 在 页首加入 ValidateRequest="false"

    如下:

    <%@ Page Language="C#" MasterPageFile="~/MasterPages/CompanyManage.master" CodeFile="CompanyIntroEdit.aspx.cs" Inherits="CompanyIntroEdit" Title="Untitled Page" ValidateRequest="false" %>

  • 相关阅读:
    分词器下载地址
    solr 查询方式
    solr 到 lucene
    Solr 安装与使用 Centos7
    线性表-串:KMP模式匹配算法
    金山——弱智的翻译程序
    FL2440移植Linux2.6.33.7内核
    FL2440移植u-boot2011.09
    【转】C/C++除法实现方式及负数取模详解
    循环缓冲类
  • 原文地址:https://www.cnblogs.com/Areas/p/2658913.html
Copyright © 2020-2023  润新知