2014年2月15日

自己留存:小经验在asp.net 4.5或者asp.net mvc 5解决A potentially dangerous Request.Form value was detected from the client

摘要: 以前的解决办法是 今天却发现这个办法不起作用还试了一下这个办法:[ValidateInput(false)]public ActionMethod Edit(int id, string value){ // Do your own checking of value since it could contain XSS stuff! return View();}也不行。之后找到这么一个解决办法:Request.Unvalidated["MyQueryKey"]。这个办法就解决了这个问题。希望对其他人有帮助。 阅读全文

posted @ 2014-02-15 19:43 mikelij 阅读(1754) 评论(0) 推荐(0) 编辑

自己存档:ajax 动态提交form

摘要: $.ajax({ cache: true, type: "POST", url: "/postcomment", data: $('#pinglunform').serialize(),// 你的formid async: false, error: function (request) { alert("Connection error"); }, success: function (data) { $("#commonLayout_appcreshi").parent().html(data) 阅读全文

posted @ 2014-02-15 09:25 mikelij 阅读(240) 评论(0) 推荐(0) 编辑

导航