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