如何检查用户授权的时间和用户的ID :)

时间:2010-03-02 12:33:29

标签: asp.net

protected void Login1_LoggedIn(object sender, EventArgs e)
{
    {
        User.SetUser(Login1.UserName // and what is user ID ?

如果用户是否经过身份验证,如何检查其他模块?

1 个答案:

答案 0 :(得分:2)

测试用户是否经过身份验证:

HttpContext.Current.User.Identity.IsAuthenticated 

如果经过身份验证,请获取用户名:

HttpContext.Current.User.Identity.Name