Asp.netでX-Editableプラグインを使用しています。
私はこれを試しました:.Netおよび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
}