<html>
<head>
<title>My Facebook Login Page</title>
</head>
<body>
<div id="fb-root"></div>
<script>
window.fbAsyncInit = function() {
FB.init({
appId : 'YOUR_APP_ID',
status : true,
cookie : true,
xfbml : true
});
};
(function(d){
var js, id = 'facebook-jssdk'; if (d.getElementById(id)) {return;}
js = d.createElement('script'); js.id = id; js.async = true;
js.src = "//connect.facebook.net/en_US/all.js";
d.getElementsByTagName('head')[0].appendChild(js);
}(document));
</script>
<div class="fb-login-button">Login with Facebook</div>
</body>
</html>
I save this page as default.aspx when i tried to run this file using visual basic it just show me simple text. it's doesn't show me button also i set my domain name in facebook apps as 'localhost.local' and site url as 'http://localhost.local/' but when i run it generate this url 'localhost:49162/WebSite1/Default.aspx' with simple text as 'login with facebook'
it is also giving error in this line <div class="fb-login-button">Login with Facebook</div> that class not define.