我将与 Sys.Services.AuthenticationService.get_isLoggedIn() 一起使用哪个数据库
我阅读了这篇文章并检查了源代码。但我不明白他使用了哪个数据库。
我有一个名为“用户”的数据库和表以及“用户名”、“密码”和“角色”字段。所以我想使用Sys.Services.AuthenticationService.get_isLoggedIn()。
我无法理解如何访问我的数据库并查询记录的用户并返回答案。 你能举同样的例子吗.. 谢谢..
I read this article and examine source code. But I cant understand that which database have he used.
And I have a database and table named "users" and field of "username" and "password" and "roles". So I want to use Sys.Services.AuthenticationService.get_isLoggedIn().
And I cant understand how reach my database and query recorded user and return answer..
Can u give same example..
thanks..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
微软软件定义网:
所以,如果我的理解是好的,这个值应该与 HttpRequest.IsAuthenticated 属性相同。您只需在服务器端代码中执行常规身份验证(使用 ASP.NET 成员资格或 FormsAuthentication)即可自动设置此属性。
MSDN :
So, if my understanding is good, this value should be the same as HttpRequest.IsAuthenticated property. You just have to do normal authentication in server side code (using ASP.NET membership or FormsAuthentication) to automatically have this property set.