标签: asp.net authentication
我正在使用asp.net配置管理器和标准登录控件来允许用户登录。
我可以从业务层找到当前登录的用户,还是需要从用户界面传入该用户?
答案 0 :(得分:0)
试试这个:
HttpContext.Current.User.Identity.IsAuthenticated //OR you may put user into session and access it like this HttpContext.Current.Session["user"]