本文介绍了如何使用C#代码在Domain中的客户端上分配用户名?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

嗨!

如何使用C#代码在Domain中的客户端上记入用户名和密码?
(我在服务器上使用Active Directory和Win Server 2003,在客户端上使用Win XP)
.
.
谢谢.

Hi !

How to credit an username and password on a client in Domain with C# code ?
(I use Active Directory and Win Server 2003 on my Server, and Win XP on my clients)
.
.
Thanks .

推荐答案

public static string GetDomainUser()
{
// Fetch the domain user from windows credential
String userName = System.Security.Principal.WindowsIdentity.GetCurrent().Name;

// Strip the domain slashes
    int iSlash = userName.IndexOf("\\");
    if (iSlash != -1)
        return userName.Substring(iSlash + 1);
    else
        return userName;
}



这篇关于如何使用C#代码在Domain中的客户端上分配用户名?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-31 00:20