从母版页访问 User.Identity

发布于 2024-10-11 05:42:14 字数 240 浏览 2 评论 0原文

我正在尝试从我的母版页访问 User.Identity ,以便我可以找出哪个用户已登录,但是我无法让它工作。如果我在母版页中导入 System.Security.Principal ,这没有什么区别:

<%@ Import Namespace="System.Security.Principal" %>

如果我在控制器中尝试,我可以很好地访问它。

知道我需要做什么吗?

I'm trying to access User.Identity from my master page so I can figure out which user is logged in, however I can't get it to work. If I import System.Security.Principal in my master page it makes no difference:

<%@ Import Namespace="System.Security.Principal" %>

I can access it fine if I try within a Controller.

Any idea what I need to do?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(5

新一帅帅 2024-10-18 05:42:14

通过HttpContext.Current.User.Identity怎么样?

What about through HttpContext.Current.User.Identity?

老街孤人 2024-10-18 05:42:14

<%=HttpContext.Current.User.Identity.Name %> 将显示当前用户名
HttpContext.Current.User 将获取 IPrincipal 对象。

这是一个仅在标题中显示用户名的主页:

<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>
        <asp:ContentPlaceHolder ID="TitleContent" runat="server" />
    </title>
    <link href="../../Content/Style.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <div class="page">
        <div id="header">
            <div id="title">
                <h1 id="maintitle">
                    <%=HttpContext.Current.User.Identity.Name %>
                </h1>
            </div>
        </div>
        <div id="main">
            <asp:ContentPlaceHolder ID="MainContent" runat="server" />
        </div>
    </div>
</body>
</html>

<%=HttpContext.Current.User.Identity.Name %> Will display the current users name
HttpContext.Current.User will get the IPrincipal object.

Here is a master page that only displays the Username in the title:

<%@ Master Language="C#" Inherits="System.Web.Mvc.ViewMasterPage" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
    <title>
        <asp:ContentPlaceHolder ID="TitleContent" runat="server" />
    </title>
    <link href="../../Content/Style.css" rel="stylesheet" type="text/css" />
</head>
<body>
    <div class="page">
        <div id="header">
            <div id="title">
                <h1 id="maintitle">
                    <%=HttpContext.Current.User.Identity.Name %>
                </h1>
            </div>
        </div>
        <div id="main">
            <asp:ContentPlaceHolder ID="MainContent" runat="server" />
        </div>
    </div>
</body>
</html>
可爱暴击 2024-10-18 05:42:14

我认为它的工作

HttpContext.Current.User.Identity.Name.ToString()

Page.User.Identity.Name.ToString()

I think Its Work

HttpContext.Current.User.Identity.Name.ToString()

or

Page.User.Identity.Name.ToString()
傲鸠 2024-10-18 05:42:14

您可以使用HttpContext.Current.User.Name,但需要记住母版页代码仅在从属页代码之后执行。因此,只要不在母版页中执行任何安全逻辑,就可以使用此变量。

You can use HttpContext.Current.User.Name but you need to remember that the Master Page code is executed only after the slave page code. So you can use this variable as long as you are not performing any security logic in the master page.

满地尘埃落定 2024-10-18 05:42:14

您可以从以下位置获取:

Context.User.Identity.Name

You can get this from:

Context.User.Identity.Name

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文