asp.net 启用认证的全过程

1、webconfig

<system.web>
<authentication mode="Forms">
<forms loginUrl="~/Admin/Login" timeout="2880"></forms>
</authentication>
</system.web>

增加下面的节点

2、认证

 FormsAuthentication.SetAuthCookie(UserName, false);

3、获取当前认证的信息

string userName = System.Web.HttpContext.Current.User.Identity.Name;

 

4、登出

FormsAuthentication.SignOut();

 

posted on 2023-02-25 21:35  漫思  阅读(18)  评论(0编辑  收藏  举报

导航