微软自带的异步Ajax请求

一、使用步骤

微软自带的异步Ajax请求

微软自带的异步Ajax请求

二、示例代码

using System;
using System.Collections.Generic;
using System.Linq;
using System.Web;
using System.Web.Mvc; namespace WebApplication3.Controllers
{
public class MSAjaxController : Controller
{
// GET: MSAjax
public ActionResult Index()
{
return View();
} public ActionResult GetPrices(int id)
{
string result = (id*)+"元";
System.Threading.Thread.Sleep(); return Content(result);
}
}
}
@{
Layout = null;
} <!DOCTYPE html> <html>
<head>
<meta name="viewport" content="width=device-width" />
<title>Index</title>
<script src="~/Scripts/jquery-1.10.2.min.js"></script>
<script src="~/Scripts/jquery.unobtrusive-ajax.min.js"></script>
<script type="text/javascript">
function success(data) {
//alert(data);
};
</script>
</head>
<body>
<div>
@using (Ajax.BeginForm("GetPrices", "MSAjax", new AjaxOptions()
{
Confirm = "确定获取吗?",
HttpMethod = "POST",
InsertionMode = InsertionMode.Replace,
LoadingElementId = "loadingImg",
UpdateTargetId = "lblPrice",
OnSuccess = "success"
}))
{
<div>
请输入Id号:<input type="text" name="id" /><br />
<input type="submit" value="获取价格" /><br />
价格:<label id="lblPrice"></label>
<div id="loadingImg" style="display:none">
<img src="~/Content/ico_loading.gif" />
</div>
</div>
}
</div>
</body>
</html>
上一篇:lex&yacc5--YYSTYPE


下一篇:tomcat The specified JRE installation does not exist