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 have a project that integrated Facebook and asp.net membership. This project use Facebook C# sdk version 5.4.1. When I updated Facebook C# sdk to version 6.0.24, my project can not run. It was "The type or namespace name 'FacebookApplication' does not exist in the namespace 'Facebook' (are you missing an assembly reference?)"

The code are:

<script type="text/javascript">
    FB.init({ appId: '<%= Facebook.FacebookApplication.Current.AppId %>', status: true,
        cookie: true, xfbml: true
    });

    FB.Event.subscribe('auth.login', function (response) {
        window.location.reload();
    });

    function facebooklogout() {
        FB.logout(function (response) {
            window.location.reload();
        });
    };

    $(function () {
        $('#fblogout').click(facebooklogout);
    });
</script>

please help me how to change FacebookApplication to the right one, Thanks

share|improve this question

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

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

Browse other questions tagged or ask your own question.