标签:
解决方法:给Action添加属性[ValidateInput(false)]。
例:
[ValidateInput(false)] public ActionResult Index(string org) { }
MVC去掉传参时的验证:从客户端中检测到有潜在危险的Request.QueryString值
原文地址:http://www.cnblogs.com/yaosuc/p/4544447.html