我正在设置一个应用程序,在页脚中,一个 Site.Master 文件包含一个文本标签以显示“欢迎,用户名”。尽管我应用了正确的代码,但我似乎无法获取用户名的文本。
我对此很陌生,所以看不到我在做什么了。非常感谢你。
在 Site.Master 文件中:
<asp:Label ID="Label1" runat="server" ></asp:Label>
在 Site.Master.cs 文件中:
WindowsIdentity windowsIdentity = WindowsIdentity.GetCurrent();
if (windowsIdentity == null)
throw new InvalidOperationException("WindowsIdentity is null");
string nameWithoutDomain = windowsIdentity.Name.Split('\\').Last();
Label1.Text = String.Format("Welcome,{0}", nameWithoutDomain);
[解决方案]
var windowsIdentity = HttpContext.Current.User.Identity;
if (windowsIdentity == null)
throw new InvalidOperationException("WindowsIdentity is null");
string nameWithoutDomain = HttpContext.Current.User.Identity.Name.Split('\\').Last();
Label1.Text = String.Format("Welcome,{0}", nameWithoutDomain);