ASP.NET MVC入门 11、使用AJAX
作者 佚名技术
来源 NET编程
浏览
发布时间 2012-07-04
})) { if (comment.IsValid) { comment.Id = Guid.NewGuid(); comment.Author = Server.HtmlEncode (comment.Author); //comment.Email = email; comment.Content = Server.HtmlEncode(comment.Content); comment.IP = Request.UserHostAddress; //comment.Country = country; comment.DateCreated = DateTime.Now; comment.Parent = post; comment.IsApproved = ! BlogSettings.Instance.EnableCommentsModeration; if (User.Identity.IsAuthenticated) comment.IsApproved = true; string website = form["Website"] ?? ""; if (website.Trim().Length > 0) { if (!website.ToLowerInvariant ().Contains("://")) website = "http://"/ + website; Uri url; if (Uri.TryCreate(website, UriKind.Absolute, out url)) comment.Website = url; } post.AddComment(comment); SetCommentCookie (comment.Author, comment.Email, website, comment.Country); return View("_commentList", post.Comments); } else { foreach (string key in comment.BrokenRules.Keys) { //将验证不通过的信息添加到错误信息列表 jsonData.ErrorMsg.Add(comment.BrokenRules[key]); } } } jsonData.IsError = true; return Json_Net(jsonData);//如果业务逻辑验证不通过,则返回JSON结果表示 的失败信息 } 对于上面的后台代码的[CallByAjax(true)]特性你可 以参考我Asp.net Mvc Preview 5 体验--实现ActionSelectionAttribute来判断 是否为AJAX请求而选择不同的Action这一篇文章。 暂时就到这里吧。 本文配套源码 |
凌众科技专业提供服务器租用、服务器托管、企业邮局、虚拟主机等服务,公司网站:http://www.lingzhong.cn 为了给广大客户了解更多的技术信息,本技术文章收集来源于网络,凌众科技尊重文章作者的版权,如果有涉及你的版权有必要删除你的文章,请和我们联系。以上信息与文章正文是不可分割的一部分,如果您要转载本文章,请保留以上信息,谢谢! |
你可能对下面的文章感兴趣
关于ASP.NET MVC入门 11、使用AJAX的所有评论