最近在做老项目....
参数是如何传递到页面?
//------------
JS
//------------
$(document).ready(function () {
$.ajax({
type: "POST", //提交方式
url: "WebFo.aspx/SayHello", //提交的页面/方法名
dataType: "json",
contentType: "application/json; charset=utf-8",
success: function (data) {
var x = JSON.stringify(data)
alert(x);
},
error: function (err) {
alert(err);
}
});
});
//------------
WebFo.aspx.cs
//------------
[WebMethod]
public static string SayHello()
{
return "hello wolrd!";
}