I do
<script type="text/javascript" src="Scripts/jquery-1.4.1.min.js"></script> <script type="text/javascript"> function CallPageMethod(methodName, onSuccess, onFail) { var args = ''; var l = arguments.length; if (l > 3) { for (var i = 3; i < l - 1; i += 2) { if (args.length != 0) args += ','; args += '"' + arguments[i] + '":"' + arguments[i + 1] + '"'; } } var loc = window.location.href; loc = (loc.substr(loc.length - 1, 1) == "/") ? loc + "Report.aspx" : loc; $.ajax({ type: "POST", url: loc + "/" + methodName, data: "{" + args + "}", contentType: "application/json; charset=utf-8", dataType: "json", success: onSuccess, fail: onFail }); } function success(response) { alert(response.d); } function fail(response) { alert("Ошибка."); } function select() { ........... CallPageMethod("SelectBook", success, fail, ...........); } </script>
And my script manager
<asp:ScriptManager ID="ScriptManager1" EnableScriptGlobalization="true" EnableScriptLocalization="true" EnablePageMethods="true" EnablePartialRendering="true" runat="server" />
But when I execute the select function, I got nothing ... no messages at all.
Error Log:
[ArgumentException]: Unknown web method SelectBook. Parameter name: methodName at System.Web.Script.Services.WebServiceData.GetMethodData(String methodName) at System.Web.Handlers.ScriptModule.OnPostAcquireRequestState(Object sender, EventArgs eventArgs) at System.Web.HttpApplication.SyncEventExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute() at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
And my web method:
<WebMethod()> Public Function SelectBook(ByVal values As String, ByVal valuesG As String, ByVal valuesX As String, ByVal valuesXG As String) As String '.... Return If(((vals.Length = valsG.Length) And (valsX.Length = valsXG.Length)), SQLModule.UpdateAdvCode(vals, valsG, valsX, valsXG), " ") End Function
If I just warn (CallPageMethod ("SelectBook", success, fail, ...........)) I see "undefined", but what is undefined ??? I tried to debug this javascript but could not fix it. It worked, and I understand how it should work, but I just have no idea why it is broken now and how to fix it. Help me out with this.
Additional Information
Server ASP.NET Development Server/10.0.0.0 Date Thu, 03 Feb 2011 11:30:51 GMT X-AspNet-Version 4.0.30319 Cache-Control private Content-Type text/html; charset=utf-8 Content-Length 3517 Connection Close
why close?