开发者

Get UserName in Web App

I have an ASP.net app which is being hosted on a server. I want to get the Clients username from the system and use tha开发者_JAVA技巧t name as a title for an XML file im saving on the server. I have tried various different mathods such as: Environment.UserName(); WindowsIdentity.GetCurrent();

However all that keeps returning is the NetworkService account name on the server.

Can anyone assist with this.

thank you


Given that your application has authentication set up (either Forms or Windows Authentication), you can get the current user's name via:

HttpContext.Current.User.Identity.Name


Your web application is running (by default) under the NetworkService account. If you want to know the username of the user's NT account you should check out impersonation. With that the application will be running with the credentials of the user.

For public websites this is not possible or shouldn't be done. But internal company applications could do so.


Try this:

HttpContext.Current.User.Identity.Name

This will only work if a user is authenticated by either Forms/Membership authentication or Windows, you can check beforehand:

string userName = "Anonymous";
if (User.Identity.IsAuthenticated)
   userName = HttpContext.Current.User.Identity.Name


If your users are authenticated you can use User.Identity.Name


you want the user name of the web client and WindowsIdentity or Env.UserName return you the server side user name, which might be the same as the web client user name only if you have enabled authentication.

I think to solve your issue you should look in the Request headers, in one of those headers there should be a username or useragent string telling you what you need.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜