|
|
|
Click here to copy the following block | Public Function <webmethod()> RegisterUser(byval sFirstName, byval sLastName, byval sEmail, byval sUserName, byval sPassword) as string
try Dim sRTN As String Dim dsUser As DirectoryEntry dim cnEntry as DirectoryEntry=new DirectoryEntry("LDAP://CN=USERS, DC=MYDOMAIN,DC=LOCAL")
dsUser = cnEntry.Children.Create("CN=" & sUserName, "user")
With dsUser.Properties .Item("sAMAccountName").Value = sUserName .Item("sn").Value = sLastName .Item("givenName").Value = sFirstName .Item("mail").Value = sEmail End With
With dsUser .commitChanges() .NativeObject.setPassword (sPassword) .NativeOjbect.accountdisabled = False .commitChanges() End With
return "OK"
catch return err.number & "-" & err.description end try
End Function |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
|
|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|