Page.User 是否调用数据库
我使用 Membership.getUser()
来获取当前登录的用户,但我最近发现每次调用它时,都会从数据库中检索数据。
如果 page.user 也调用数据库,那么如何在不连续访问数据库的情况下获取当前登录的用户。
在会话中存储和管理这个对象会很困难。
I was using Membership.getUser()
to get the currently logged in user but I recently discovered that each time this it called, the data is retrieved from the database.
If page.user
also makes a call to the db then how can I get the currently logged on user without continuously hitting the db.
It would be difficult to store and manage this object in session.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
Page.User
不会访问数据库。您可以从 HttpContext 获取当前登录用户的名称,而无需访问数据库。
或者
Page.User
will not hit the DB.You can get the name of the currently logged in user from
HttpContext
without hitting the DB.OR
您可以使用
HttpContext.User.Identity
[MSDN]you can use
HttpContext.User.Identity
[MSDN]