我使用Site.Master文件使用以下代码在每个页面上创建登录/注销字段:
<asp:LoginView ID="HeadLoginView" runat="server" EnableViewState="false" >
<AnonymousTemplate>
[ <a href="~/Account/Login.aspx" ID="HeadLoginStatus" runat="server">Log In</a> ]
</AnonymousTemplate>
<LoggedInTemplate>
Welcome <span class="bold"><asp:LoginName ID="HeadLoginName" runat="server" /></span>!
[ <asp:LoginStatus ID="HeadLoginStatus" runat="server" LogoutAction="Redirect" LogoutText="Log Out" OnLoggedOut="LoginStatus1_LoggedOut" LogoutPageUrl="~/"/> ]
</LoggedInTemplate>
</asp:LoginView>
但是,当用户注销时,我希望能够运行事件处理程序
OnLoggedOut="LoginStatus1_LoggedOut"
并编辑用户表中的一些信息(例如,上次注销时间和不是时间)。但是,我不知道如何检索此信息,因为
FormsIdentity id = (FormsIdentity)User.Identity;
显然在Site.Master.cs中不起作用(用户在上下文中不存在)。有没有其他方法来检索用户信息?另外,有没有办法从用户点击“退出”的页面传输信息(例如使用查询字符串)?
由于
答案 0 :(得分:1)
你在寻找这样的东西吗?
System.Security.Principal.IIdentity id = HttpContext.Current.User.Identity;
或者如果您只需要UserName ...
String id = HttpContext.Current.User.Identity.Name