ASP.NET Ajax请求
程序员文章站
2022-06-03 12:19:13
...
前端用jquery.js
$.ajax({
type:'post',
contentType: "application/json; charset=utf-8",
url:'myself.aspx/ReceiveAjaxMethod',
data:"{\"obj1\": \"" + obj1 + "\", \"listObj1\": " + JSON.stringify(listObj1) + "}",
dataType: "json",
async: true,
success:function(data) {
alert(data.d);
if(data.d == "success") {
location.reload();
}
},
error:function() {
alert("Exception, refersh page or contact support!");
}
});
其中请求的URL是本页面名称加请求的ajax方法。
后端:
[WebMethod]
public static string ReceiveAjaxMethod(string obj1, List<obj1> listobj1)
{
// 请开始你的表演
}
这里要注意的有:
(1)请加上[WebMethod],对应需要引入的库有:
using System.Web;
using System.Web.Services;
可以只需要引入下面那个就好了,可以试试。
(2)函数名和参数和前端是对应的。
配置文件(Web.config):
需加上上面那个配置:
<httpModules>
<add name="ScriptModule" type="System.Web.Handlers.ScriptModule, System.Web.Extensions, Version=3.5.0.0,
Culture=neutral, PublicKeyToken=31BF3856AD364E35"/>
</httpModules>
参考link: https://www.cnblogs.com/joeylee/archive/2012/11/19/2777770.html
其中有讲到不同.net版本的区别,值得一看。