获取本地系统的用户名

时间:2013-05-06 06:36:53

标签: asp.net username localsystem

在我的网络应用程序中,我需要显示当前登录系统的用户名。我的表单中有一个文本框和一个按钮。示例:如果用户“Admin”当前已登录并使用(本地)系统。单击按钮后,名称Admin必须显示在文本框中。

2 个答案:

答案 0 :(得分:0)

请尝试以下代码获取当前用户名

string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;

答案 1 :(得分:0)

嘿,请参阅Asp.Net的此代码

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

这是经过测试的代码。