当我尝试运行论坛页面时:
System.Web.HttpRequestValidationException: A potentially dangerous Request.Form value was detected from the client
在我的 web.config 中,我有:
<pages validateRequest="false" smartNavigation="false">
在实际页面上,我还有:
<%@ Page Language="C#" AutoEventWireup="true" ValidateRequest="false" MasterPageFile="~/MasterPages/Main.master" %>
但它一直抛出这个错误!
编辑
我修复了它:
<httpRuntime requestValidationMode="2.0" />
但那是做什么的,为什么它会起作用?