在我的web应用程序中,我需要显示当前登录系统的用户名。我有一个文本框和一个按钮在我的形式。示例:如果用户"Admin"当前正在使用(本地)系统登录。一旦我点击按钮的名称Admin必须显示在文本框
请尝试下面的代码获取当前用户名
string userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;
嘿,请参考此代码的Asp。净
string currentUsername = System.Web.HttpContext.Current.User.Identity.Name;