我已经使用JavaScript代码在c#类(代码中提供的方法)中调用方法。回传什么时候出现错误500,我想知道如何解决这个问题,以便我调用该方法。

JavaScript调用c#类方法

$.ajax({
type: "post",
    url: "TestChapter.aspx/timeFinished",
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    success: function (result) {
        //
    }
});


C#类testchapter.aspx中的方法:

[System.Web.Services.WebMethod]
public void timeFinished() {
    // my code is here
}

最佳答案

在C#类testchapter.aspx中尝试此方法,它可能会起作用:

[System.Web.Services.WebMethod]
public static void timeFinished() {
    // my code is here
}


看看this post

10-08 02:47