实现平台登录与域控制相结合的方法

本文介绍了如何在IIS中设置整合的Windows验证,以及如何在Web应用程序中获取并利用AD帐号信息。通过Web.config配置文件启用身份冒充,并使用System.Security.Principal命名空间来获取当前用户的身份。客户端可以通过修改IE浏览器的安全设置,自动使用当前用户名和密码登录,或者将站点添加到受信任站点来避免登录验证弹窗。
摘要由CSDN通过智能技术生成
  1.使用整合的windows验证
      在IIS中設置:內容->目录安全设定->编辑(匿名存取及验证)->勾掉匿名存取,勾选整合的windows验证 
  2.获取用户的AD帐号 
      (1)在Web.config中添加  :  <identity  impersonate="true"/>   
      <system.web> 
        <identity  impersonate="true"/>                         
      </system.web> 
    (2)引入命名空间:using System.Security.Principal 
    (3)取得AD帐号 
          WindowsPrincipal userinfo = new WindowsPrincipal(WindowsIdentity.GetCurrent());
        strHostName = userinfo.Identity.Name.ToString();
客户端如果什么都不做的话,登录的时候会弹出验证框.避免这个的方法有两种
方法一:
1、打开IE浏览器,找到工具菜单   
  open the IE and click the“tool”on the menu bar     
2、点击IE属性   
  Click the “Internet Option 
3、切换到安全页,选择Internet,点击自定义级别按钮   
  select the tag of “security”–>“Internet”and then click the button”Custom Level”
4、找到用户认证,选择自动使用当前用户名密码登录,点击确定按钮,再次点击确定关闭窗口Browse  and  find  the  “User  Authentication  “,  select  the  “Automatic  logon  with  current  username  and  password”.  And  Click  “OK"
方法二:
1.将站点加入受信任站点.
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值