我在 Asp.net 中使用X-Editable 插件。
我试过这个:Usage with .Net and C# Webmethods
但它给了我错误。它没有按应有的方式调用 WebMethod。
如何解决这个问题呢?
请帮忙。
Javascript:
$('#username').editable({
url: function (params) {
return $.ajax({
url: 'Default.aspx/TestMethod',
data: JSON.stringify(params),
dataType: 'json',
async: true,
cache: false,
timeout: 10000,
success: function (response) {
alert("Success");
},
error: function () {
alert("Error in Ajax");
}
});
}
});
HTML:
<a href="#" id="username" class="myeditable">superuser</a>
Default.aspx 中的 WebMethod:
[System.Web.Services.WebMethod]
public static String TestMethod(String params)
{
//access params here
}