0

我正在使用 ajax 和 web 方法,当我执行此代码时出现一个错误,说 post POST 500 (Internal Server Error) 但此路径存在!!!

这段代码是我此刻正在使用的

function fnSendID() {

        $.ajax({
            type: "POST",
            url: "GMap.aspx/SendCommands",
            data: '{IDMobile: "'+$("#<%=Ddl_MobileCustomer.ClientID%>").val()+'"}',
            contentType: "application/json; charset=utf-8",
            dataType: "json",
            success: function (response) {

                console.log("Entro : " + response.d);
            },
            failure: function (response) {
                console.log("Fallo : " + response.d);
            }
        });

<WebMethod()> _
    Public Shared Function SendCommands(ByVal IDMobile As String) As String
        'iIDMobile = GetMobileID(iIDMobile)
        Dim sResponse As String = IDMobile + "Buenas"
        Return sResponse
    End Function
4

2 回答 2

1

500 表示您访问的路径在服务器端导致错误,而不是路径不存在。

于 2013-04-23T20:51:27.687 回答
0

调试代码并在 Dim sResponse As String = IDMobile + "Buenas" 处设置断点。它到达这里了吗?退货前有什么异常吗?

于 2013-04-23T22:38:54.827 回答