protected void Login1_LoggedIn(object sender, EventArgs e)
{
{
User.SetUser(Login1.UserName // and what is user ID ?
如果用户是否经过身份验证,如何检查其他模块?
答案 0 :(得分:2)
测试用户是否经过身份验证:
HttpContext.Current.User.Identity.IsAuthenticated
如果经过身份验证,请获取用户名:
HttpContext.Current.User.Identity.Name