vote up 1 vote down star

how Call non-static method in server side(aspx.cs) from client side using javascript (aspx)....?

As far as I know I can call static method in server side from client side...

server side :

 [System.Web.Services.WebMethod]
 public static void method1()
 {

 }

client side :

 <script language="JavaScript">
     function keyUP() 
     {
         PageMethods.method1();
     }
 </script>
 <asp:ScriptManager ID="ScriptManager1" runat="server" EnablePageMethods="true">
 </asp:ScriptManager>

It works. Now how do I call non-static method from client side...?

flag

3 Answers

vote up 1 vote down

Dave has written in detail about calling page methods from client side using jquery ajax. The general idea is like this (if you find any problem please refer to Dave's site).

C# Code:

[WebMethod]
public static string yourmethod(/*params*/)
{
   return "Hello World!"   
}

ASPX:

$.ajax({
	type: 'POST',
	data: /*Your Data*/,
	dataType: 'JSON',
	contentType: 'application/json',
	url: '/yourpage.aspx/yourmethod',//Method to call
	success: function(result, status) {
		//handle return data
	},
	error: function(xhr, status, error) {
		//handle error
	}
});
link|flag
Ok ... thank U ...... – Pramulia Sep 1 at 5:28
vote up 0 vote down

Actually, you don't get to call non-static methods in this way.

When you are calling a PageMethod, you're basically calling a special web service. This feature only works with static methods on the same page.

link|flag
OK i got it guys... so....................... do you have another solution how to call method in serverside(aspx.cs) from client side (aspx) guys..... thanks 4 solution...... – Pramulia Sep 1 at 4:22
vote up 2 vote down

No you cannot call non-static methods from client side per se. I've tried it once but it is ugly one (also I used jQuery ajax). Just call the page using ajax with method name appended to it as query string parameter and then on server side check the parameter and call the relevant method. But as I've told you it is pretty ugly :(

$.ajax({'/mypage.aspx?m=mymethod',......}); //this is not correct syntax

on server side:

protected void Page_Load(object sender, EventArgs e)
{
    if(!Request.QueryString.HasKeys() || 
                string.IsNullOrEmpty(Request.QueryString["m"]))
    {
        //return error or something relevant to your code
    }
    var m = Request.QueryString["m"];

    switch(m)
    {
        case "a":
        a();
        break;
        .....
        .....
    }
}
link|flag
OK i got it guys... so....................... do you have another solution how to call method in serverside(aspx.cs) from client side (aspx) guys..... thanks 4 solution...... – Pramulia Sep 1 at 4:23

Your Answer

Get an OpenID
or

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