通过ASP.Net页面获取域用户名(当前登陆的用户)

string domainAndName = Page.User.Identity.Name; string[] infoes = domainAndName.Split(new char[1] { '//' }, StringSplitOptions.RemoveEmptyEntries); string userDomainName = ""; string userName = ""; if (infoes.Length > 1) { userDomainName = infoes[0]; userName = infoes[1]; } 

需要注意的地方(可能出现问题的地方已经解决方案):

1.将IIS Authentication设置为:Windows Authentication,并且只有这一项

2.在ASP.Net的Web.Config中添加: 

3.发布到IIS后,将Application Pool选择为Classic的

4.将IIS的 ISAPI and CGI Restrictions设置为Allowed

 

以上是查阅很多资料之后总结的心得。

你可能感兴趣的:(About,Active,Directory)