Click here to Skip to main content
16,004,727 members
Please Sign up or sign in to vote.
5.00/5 (1 vote)
See more:
hi,
My requriment is javascript values are binding to .cs method...
this is my code
id
name
email values binding to c#.net .cs file please give me answer....?
HTML
<script type="text/javascript">
     // Load the SDK Asynchronously
     (function (d) {
         var js, id = 'facebook-jssdk', ref = d.getElementsByTagName('script')[0];
         if (d.getElementById(id)) { return; }
         js = d.createElement('script'); js.id = id; js.async = true;
         js.src = "//connect.facebook.net/en_US/all.js";
         ref.parentNode.insertBefore(js, ref);
     } (document));


     // Init the SDK upon load
     window.fbAsyncInit = function () {
         FB.init({
             appId: '390102924456276', // App ID
             channelUrl: '//' + window.location.hostname + '/channel', // Path to your Channel File
             status: true, // check login status
             cookie: true, // enable cookies to allow the server to access the session
             xfbml: true  // parse XFBML
         });

         // listen for and handle auth.statusChange events
         FB.Event.subscribe('auth.statusChange', function (response) 
         {
             if (response.authResponse) {

                 // user has auth'd your app and is logged into Facebook
                 var uid = "http://graph.facebook.com/" + response.authResponse.userID + "/picture";
                 FB.api('/me', function (me)
                  {
                
                     document.getElementById('auth-displayname').innerHTML = me.name;
                     document.getElementById('Email').innerHTML = me.email;
                     document.getElementById('profileImg').src = uid;

                     
                 })
                 document.getElementById('auth-loggedout').style.display = 'none';
                 document.getElementById('auth-loggedin').style.display = 'block';
             } else {
                 // user has not auth'd your app, or is not logged into Facebook
                 document.getElementById('auth-loggedout').style.display = 'block';
                 document.getElementById('auth-loggedin').style.display = 'none';
             }
         });
         $("#auth-logoutlink").click(function ()
         { FB.logout(function () { window.location.reload(); }); });
     }
</script>
Posted
Updated 13-Dec-13 1:51am
v2
Comments
Sampath Lokuge 13-Dec-13 8:23am    
Are you using MVC or what ?

1 solution

You can use jQuery Ajax: http://api.jquery.com/category/ajax[^].

—SA
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900