Hi.
Got a problem with a PageMethod (i.e. web method)
Its defined like
[WebMethod(EnableSession = true)]
[System.Web.Script.Services.ScriptMethod()]
public static string FastServerCall(string parameters)
{
return "some stuff";
} And it's used like
<input type="button" id="btnMbTimeoutCancel" runat="server" value="Avbryt" onclick="PageMethods.FastServerCall('', TestSuccess, TestFailed); "/ ...
Go to the complete details ...