我将与 Sys.Services.AuthenticationService.get_isLoggedIn() 一起使用哪个数据库

发布于 2024-10-27 01:18:30 字数 195 浏览 0 评论 0原文

我阅读了这篇文章并检查了源代码。但我不明白他使用了哪个数据库。

我有一个名为“用户”的数据库和表以及“用户名”、“密码”和“角色”字段。所以我想使用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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

伴随着你 2024-11-03 01:18:30

微软软件定义网:

Sys.Services.AuthenticationService.get_isLoggedIn:值
该属性由 ScriptManager 对象在页面期间设置
请求。

所以,如果我的理解是好的,这个值应该与 HttpRequest.IsAuthenticated 属性相同。您只需在服务器端代码中执行常规身份验证(使用 ASP.NET 成员资格或 FormsAuthentication)即可自动设置此属性。

MSDN :

Sys.Services.AuthenticationService.get_isLoggedIn: The value of
this property is set by the ScriptManager object during a page
request.

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文