Ask a Question related to ASP.NET Security, Design and Development.
-
Mike #1
ldap or active directory
In my current asp.net application i'm getting the user network short name
and displaying that on the screen. What I want is the users Full name and
display that instear. How can i go about doing that, would I use LDAP or
Active directory to do that?
I never had to do this and not sure how to do it or where to start looking.
Ex: this is what i get now.
jsmith - network logon ID
what I want is:
John Smith.
is this possible?
Mike Guest
-
I have a problem with LDAP (Active Directory).
Hi, I would like that they were helping me in a problem: I need to authenticate my users inside the domain with the Active Directory without the... -
WPS integration with LDAP/Active Directory
Hi, I need to intigrate WPS with LDAP . i am new to LDAP. What are the things i need to do to integrate. i am using Active directory. is it... -
Updating Active Directory via LDAP
I am attempting to use CFLDAP to manage group membership inside of Active Directory. I have had no trouble binding and querying against the... -
LDAP And Active Directory
Ok, Im not sure where else to turn to so here goes. Im Trying to creat a web app to allow me to unlock 'Locked' user accounts in Wondows 2003 from... -
ASP, LDAP and Active Directory
I have an ASP page acessing an LDAP server (Exchange server on Windows 2000). I tried running the asp query on the machine that contains the LDAP... -
Joe Kaplan \(MVP - ADSI\) #2
Re: ldap or active directory
You talk to Active Directory via LDAP (generally with
System.DirectoryServices using .NET), so the answer is likely to be both.
The basic idea would be to use the DirectorySearcher component to search
Active Directory based on the short name (probably the samAccountName
attribute) and return the DisplayName or whatever other attribute actually
has the full name in your directory.
There are some nice samples in MSDN and some good technotes on S.DS in
ASP.NET:
[url]http://msdn.microsoft.com/library/default.asp?url=/library/en-us/sds/sds/searching_the_directory.asp?frame=true[/url]
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;329986[/url]
Joe K.
"Mike" <csharpcoder@sbcglobal.net> wrote in message
news:%2399Xm$p5DHA.1428@TK2MSFTNGP12.phx.gbl...looking.> In my current asp.net application i'm getting the user network short name
> and displaying that on the screen. What I want is the users Full name and
> display that instear. How can i go about doing that, would I use LDAP or
> Active directory to do that?
>
> I never had to do this and not sure how to do it or where to start>
> Ex: this is what i get now.
> jsmith - network logon ID
>
> what I want is:
> John Smith.
>
> is this possible?
>
>
Joe Kaplan \(MVP - ADSI\) Guest



Reply With Quote

