C#
SharePoint 读取当前用户信息(域用户)HttpContext.Current.User.Identity.Name;

得到结果:域\admin

1.在IIS中将访问方式更改为不允许匿名访问

2.在Web.config中将验证方式更改为
               <identity impersonate="true"/>
               <authentication mode="Windows" />

3.在源代码中使用
   var1 = Security.Principal.WindowsIdentity.GetCurrent.Name

===========================================
HttpContext.Current.User.Identity.Name

相关文章:

  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-09-09
  • 2022-02-04
猜你喜欢
  • 2021-08-12
  • 2022-02-16
  • 2022-12-23
  • 2021-08-18
  • 2021-10-05
  • 2022-12-23
相关资源
相似解决方案