02 2014 档案

自己存档:table 的css
摘要:border:0;margin:0;border-collapse:collapse;border-spacing:0; 阅读全文

posted @ 2014-02-16 23:34 mikelij 编辑

自己存档:asp.net mvc 从filterContent得到controller和action
摘要://filterContext.RouteData.GetRequiredString("controller") + "/" + filterContext.RouteData.GetRequiredString("action"); //filterContext.HttpContext.Response.Redirect("http://" + filterContext.HttpContext.Request.Url.Host + ":" + filterContext.HttpCont 阅读全文

posted @ 2014-02-16 20:06 mikelij 编辑

自己留存:小经验在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 阅读(1755) 评论(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 编辑

自己留存:mysql full text 支持中文的一个设定
摘要:innodb_ft_min_token_size=1ft_min_word_len=1 阅读全文

posted @ 2014-02-04 20:36 mikelij 编辑

导航