使用ajax连接字符串连接Web服务

时间:2013-08-18 20:48:16

标签: c# ajax web-services connection

我想连接我正在写的网络服务。但我继续采取以下错误“无法加载资源:服务器响应状态为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";
}


}

0 个答案:

没有答案