ASP.Net - 从业务层检查用户详细信息

时间:2009-05-28 04:46:17

标签: asp.net authentication

我正在使用asp.net配置管理器和标准登录控件来允许用户登录。

我可以从业务层找到当前登录的用户,还是需要从用户界面传入该用户?

1 个答案:

答案 0 :(得分:0)

试试这个:

HttpContext.Current.User.Identity.IsAuthenticated

//OR you may put user into session and access it like this

HttpContext.Current.Session["user"]