我正在使用ajax和web方法,当我执行此代码时出现错误 发布POST 500(内部服务器错误) 但这条路存在!!!
此代码是我现在正在使用的
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
答案 0 :(得分:1)
500表示您正在命中的路径导致服务器端出错而不是该路径不存在。
答案 1 :(得分:0)
调试代码并在Dim sResponse As String = IDMobile +“Buenas”设置断点。 它到达这里了吗?返回前有没有例外?