Linked Questions

Popular Questions

can't access C# method using jquery

Asked by At

I am trying to call a C# method from java script ,I am new to web development and after a bit of searching decided on using jquery to do the same,the way I try to call the method is:

$.ajax({
          type: "POST",
          url: "Default.aspx/IncrementJ",
          data: "{}",
          contentType: "application/json; charset=utf-8",
          dataType: "json",
          success: function(msg) {
            alert("success!")
          }
        });

here IncrementJ is my function name defined in C# which I want to call.here is the definition:

 [WebMethod]
    public static  void IncrementJ()
    {

        try
        {
            j++;
        }
        catch (Exception ex)
        {
            throw ex;
        }
    }

when I run my program web console throws an error "cannot locate resource incrementJ";please tell me where I am going wrong,

Thanks .

Related Questions