0

書いているWebサービスに接続しようとしています。しかし、「リソースのロードに失敗しました: サーバーは 500 (内部サーバー エラー) のステータスで応答しました」というエラーが表示され続けます。

ここに私のajaxコードがあります

var a = "a";
$.ajax({
type: "POST
url: "FethData.asmx/returnEmployeeInfo=?r" + Math.random(),
data:"{s: '" + a + "'}",
contentType: "application/json; charset=utf-8",
dataType: "json",
cache: false,
success: function (response) {
var result = response.d;
if (result == "OK") {
alert('asd');
 }
},
timeout: function (response) {
alert("timeout");
},
error: function (msg) {
alert("error");
}
})

そして私のウェブサービス

public class FetchData : System.Web.Services.WebService
{
[WebMethod]
public string returnEmployeeInfo(string s)
{
string a = "a";

return "OK";
}


}
4

0 に答える 0