Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I am using ajax call back for void method.But if i call other method in the calling method.M geeting error.Any help me would be appericiated. Below is my code

    [WebMethod]
    public static void BindNextActions()
    {
        BindGridView(); ---Error at this point..its a private void method


    }
share|improve this question
Is BindGridView() an event method? – viki Jan 7 at 7:19
hi viki ,its a private void method – Channakeshav Jan 7 at 7:21
hi viki, m getting this errorError 103 An object reference is required for the non-static field, method, or property – Channakeshav Jan 7 at 7:22

1 Answer

up vote 2 down vote accepted

You are trying to call a non-static function from a static function. This is the reason for the error. The solution can be found in the following link. How do I call a non-static method from a static method in C#?

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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