当 文本编辑控件 出现 from或非法字符 无法提交时

在  WebConfig 中  配置  该属性

requestValidationMode="2.0"   //request提交方式

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

在页面 page 中 加入 该 属性

validateRequest="false"  //让页面提交request 不验证

<%@ Page MasterPageFile="~/Skins/SiteManager_Info.Master" validateRequest="false" %>

   

你可能感兴趣的:(非法字符)