//先进行html加密 var text = $("#text").val(); text = encodeURIComponent(text);
//后端存入数据库进行解密 string text = context.Server.UrlDecode(context.Request["text"]);
//修改时候在配置文件中加入 <httpRuntime targetFramework="4.5.2" requestValidationMode="2.0"/>
//先进行html加密 var text = $("#text").val(); text = encodeURIComponent(text);
//后端存入数据库进行解密 string text = context.Server.UrlDecode(context.Request["text"]);
//修改时候在配置文件中加入 <httpRuntime targetFramework="4.5.2" requestValidationMode="2.0"/>