标签:
1 public ActionResult GetDate() 2 { 3 return Content(DateTime.Now.ToString()); 4 } 5 public ActionResult MicrosoftAjax() 6 { 7 return View(); 8 }
1 @{ 2 Layout = null; 3 } 4 5 <!DOCTYPE html> 6 7 <html> 8 <head> 9 <meta name="viewport" content="width=device-width" /> 10 <title>MicrosoftAjax</title> 11 <script src="~/Scripts/jquery-1.8.2.min.js"></script> 12 <script src="~/Scripts/jquery.unobtrusive-ajax.min.js"></script> 13 </head> 14 <body> 15 <div> 16 @using (Ajax.BeginForm("GetDate", "Ajax", new AjaxOptions() { Confirm = "您是否要提交?", HttpMethod = "post", InsertionMode = InsertionMode.Replace, UpdateTargetId = "result" })) 17 { 18 19 <div> 20 用户名:<input type="text" name="=UserName"><br /> 21 密码:<input type="password" name="Pwd"><br /> 22 <input type="submit" value="提交"> 23 </div> 24 } 25 <div 26 id="result"> 27 28 </div> 29 </div> 30 </body> 31 </html>
标签:
原文地址:http://www.cnblogs.com/mylovemygirl/p/4967043.html