在aspx页面 加上ValidateRequest="false"
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="PointRules.aspx.cs" Inherits="Apis_PointRules" ValidateRequest="false" %>
如果还是报 检测到有潜在危险的 Request.Form 值
在web.config的system.web节点里面加上<httpRuntime requestValidationMode="2.0" />就可以了。
这是.net framework 4.0版本及4.0版本以下的特点
.net framework 4.0版本以上就不会有这样的问题了