我正在构建一个 Web 应用程序,我试图在 WebForm 中调用一个 WebMethod,我已经尝试了谷歌中的每个页面,但我仍然一无所获。这是 Jquery Ajax 调用的示例
$.ajax({
type: "Post",
url: "Default.aspx/Return",
data: {dato:'Hello'},
contentType: "application/json; chartset:utf-8",
dataType: "json",
success:
function (result) {
if (result.d) {
alert(result.d);
}
},
error:
function (XmlHttpError, error, description) {
$("#grdEmpleados").html(XmlHttpError.responseText);
},
async: true
});
这是代码隐藏中的 WebMethod
[WebMethod]
[ScriptMethod(ResponseFormat=ResponseFormat.Json)]
public static string Return(string dato)
{
return dato;
}