Asp.net会员授权无需密码
要对 Asp.net 会员资格中的用户进行身份验证,我们可以调用方法,
FormsAuthentication.Authenticate(username, password)
如何在没有用户密码的情况下完成相同的工作(生成会话、cookie 和身份验证所做的所有其他工作人员)?
我正在尝试通过 facebook connect 登录用户。用户的 Facebook ID 存储在用户数据中。用户应像普通用户一样登录。
To authanticate users in Asp.net Membership we can call method
FormsAuthentication.Authenticate(username, password)
how can I do the same job (generate session, cookies and all other staff that Authanticate does) without users password?
I'm trying to login user over facebook connect. User's facebook id is stored within the users data. User should be signed in like a normal user.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为你可以使用 SetAuthCookie 方法。
更多信息请参见http://msdn.microsoft。 com/en-us/library/system.web.security.formsauthentication.setauthcookie.aspx
I think you can use the SetAuthCookie method.
more info here http://msdn.microsoft.com/en-us/library/system.web.security.formsauthentication.setauthcookie.aspx