问题描述
在使用updatepanel 时,上传到服务器出现如下错误:Sys.WebForms.PageRequestManagerServerErrorException: 在服务器上处理请求时出现未知错误。服务器返回的状态码为: 500。
问题原因
一般的原因都是页面存在潜在的危险字符
问题解决
1.在页首加入ValidateRequest="false",如下:
<%@ Page Language="C#" MasterPageFile="~/MasterPages/CompanyManage.master" AutoEventWireup="true" CodeFile="CompanyIntroEdit.aspx.cs" Inherits="CompanyIntroEdit" Title="Untitled Page" ValidateRequest="false" %>
<asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true" EnablePartialRendering="false"></asp:ScriptManager>
3.在Web.Config中添加enableEventValidation="false",如下:
<system.web>
<pages enableEventValidation="false"/>
</system.web>