ASP.NET 控制器基类 User.Identity.Name
如这篇文章中所述,我创建了一个抽象基本控制器类以便能够将数据从控制器传递到 master.page。 在本例中,我想在数据库中查找用户,查询 User.Identity.Name (仅当他登录时)。
但是,我注意到在这个抽象基类中,User
属性始终为 null
。 我需要做什么才能使其正常工作?
多谢
As described in this post, I created an abstract base controller class in order to be able to pass data from a controller to master.page. In this case, I want to lookup a user in my db, querying for User.Identity.Name (only if he is logged in).
However, I noticed that in this abstract base class the User
property is always null
. What do I have to do to get this working?
Thanks a lot
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
正如 Paco 所建议的,视图数据只有在您尝试使用它之后才会初始化。
尝试重写 Controller.Initialize() :
As Paco suggested, the viewdata isn't initialized till after you are trying to use it.
Try overriding Controller.Initialize() instead:
要使用该用户,您应该从以下位置获取当前页面
To use the user, you should get the current page from
通过在 web.config 中设置 Windows 身份验证,您可以通过 User.Identity.Name 获取用户
By setting authentication to Windows in web.config, you can get the user with User.Identity.Name
我在静态 Utlilites 类上使用 Page 类。 像那样;
Page P = (Page)HttpContext.Current.Handler;
我可以通过 P 对象获取当前请求页面的所有属性。
I use Page class on my static Utlilites classes. Like that;
Page P = (Page)HttpContext.Current.Handler;
and i can get all properties via the P object for the current requested page..
你有没有尝试过这个:
ControllerContext.HttpContext.Current.User.Identity.Name?
Have you tried this:
ControllerContext.HttpContext.Current.User.Identity.Name?