vote up 0 vote down star

I have a very simple call to a PageMethod. When I step through my PageMethod in my .cs file, the value looks as expected. However, on the client side I get an undefined result. Any ideas? This should be horribly simple.

Here is my js: (EnablePageMethods="true" in my ASPX page)

function test() {
    alert(PageMethods.MyMethod("Joe Blow"));
}

And here is my C#:

public partial class test : System.Web.UI.Page 
{
    [WebMethod]
    public static string MyMethod(string name)
    {
        return "Hello " + name;
    }
}
flag

50% accept rate
I take it the EnablePageMethods attribute is on a ScriptManager control in your page? – Russ Cam Aug 24 at 19:26
Yes, to your first question. – Clay Aug 24 at 19:31
No, to your second question, I read that earlier...haven't found an answer to this here so far. Thanks. – Clay Aug 24 at 19:32
Hmmm... this is very strange. I have Page Methods numerous times and have not seen this behaviour before - I set up a demo on my local machine (VS2008 3.5 SP1) and to my surprise PageMethods did not appear to be working correctly for me either. Using firebug (or fiddler) I can see a HTTP Post is made but it calls the onFailure function when it does (interestingly, with no error message). If I call the PageMethod from the console in firebug, again I see the HTTP post and the response this time is the expected one. What version and pack of Visual Studio are you using? – Russ Cam Aug 24 at 21:47
To clarify, when the PageMethod is called from inside the page, the HTTP Post returns 200 ok and the response is expected, but what happens on the page is that the failure function gets called and the result is "The Server method [xxx] failed". A page refresh then occurs straight after. As I have said, I have used PageMethods numerous times and not seen this behaviour before. – Russ Cam Aug 24 at 22:15
show 1 more comment

3 Answers

vote up 0 vote down check

Check out the following screencast. It explains how to call the PageMethods using JQuery:

http://www.highoncoding.com/Articles/430%5FCalling%5FPage%5FMethods%5FUsing%5FJQuery%5Fand%5FReturning%5FJSON%5FResult.aspx

link|flag
Thank you, this worked. I would like to understand why using jQuery to make a JSON call worked but the "Microsoft way" did not. Thank you for your time! – Clay Aug 24 at 20:22
I will try out with the Microsoft library and let you know. Thanks! – azamsharp Aug 24 at 21:25
Sounds great, I hope you have better luck than I did! :) – Clay Aug 25 at 2:32
Check out the answer below for calling PageMethods using Microsoft Ajax Library. – azamsharp Aug 25 at 18:15
vote up 1 vote down

You've to pass in a callback function that would be executed on Success / Exception. So in this case, it would be something like this

PageMethods.MyMethod("Joe Blow", onSuccess, onError);

function onError(desc) {
}

function onSuccess(result) {
}

I would check the documentation for the exact usage.

link|flag
I've done this and it doesn't seem to help. – Clay Aug 24 at 20:15
vote up 0 vote down

Here is the answer on how to call PageMethods using MS Ajax. First make sure you have downloaded the latest Ajax library from the MS website.

<asp:ScriptManager ID="sm1" runat="server" EnablePageMethods="true">   
    </asp:ScriptManager>

    <input type="button" value="Greeting" onclick="greetings()" />

<script language="javascript" type="text/javascript">

    function greetings() {

       PageMethods.GreetingFromPage(function(response) {

            alert(response);

         });

    }


</script>

   [WebMethod]
        public static string GreetingFromPage()
        {
            return "greeting from page"; 
        }

That is pretty much it!

link|flag
Thanks, the syntax here is slightly different from what I was using, I'll give this a shot. – Clay Aug 26 at 12:15

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.