Я получаю следующую ошибку: "Имя метода веб-службы недопустимо", когда я пытаюсь вызвать webmethod из javascript
Исправление System.InvalidOperationException: имя метода SaveBAT недействительно. в System.Web.Services.Protocols.HttpServerProtocol.Initialize() в System.Web.Services.Protocols.ServerProtocol.SetContext(тип типа, контекст HttpContext, запрос HttpRequest, ответ HttpResponse) в System.Web.Services.Protocols.ServerProtocolFactory.Create(тип типа, контекст HttpContext, запрос HttpRequest, ответ HttpResponse, логическое и abortProcessing)
Код HTML:
<asp:LinkButton runat="server" ID="lnkAddBoat" OnClientClick="javascript:AddMyBoat(); return false;"></asp:LinkButton>
Код JS:
function AddMyBoat() {
var b = document.getElementById('HdnControlId').value;
jQuery.ajax({
type: "GET",
url: "/AllService.asmx/SaveBOAT",
data: { Pid: b },
contentType: "application/text",
dataType: "text",
success: function(dd) {
alert('Success' + dd);
},
error: function(dd) {
alert('There is error' + dd.responseText);
}
});
}
Код С# (веб-метод в файле AllService.asmx)
[WebMethod]
public static string SaveBOAT(int Pid)
{
// My Code is here
//I can put anythng here
SessionManager.MemberID = Pid;
return "";
}
Я пробовал все решения, найденные в Qaru и ASP.NET site.but, но никто из них не работал у меня.