如何将值从Javascript传递到C#.net ....中的.cs文件? [英] How to pass the values from Javascript to .cs file in C#.net ....?

查看:67
本文介绍了如何将值从Javascript传递到C#.net ....中的.cs文件?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述



我的需求是javascript值绑定到.cs方法...

这是我的代码

id

名称

绑定到c#.net .cs文件的电子邮件值请给我答案....?


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....?

<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>

推荐答案

#auth-logoutlink)。click( function ( )
{FB.logout( function (){ window location .reload();});});
}
< / 脚本 >
("#auth-logoutlink").click(function () { FB.logout(function () { window.location.reload(); }); }); } </script>


您可以使用jQuery Ajax:http://api.jquery.com/category/ajax [ ^ ]。



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

—SA


这篇关于如何将值从Javascript传递到C#.net ....中的.cs文件?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆