Ask a Question related to ASP.NET General, Design and Development.
-
szabelin #1
how to identify users of a domain and log the in to an ASP.NET application
Use ActiveDirectory:
System.DirectoryServices
************************************************** **
DirectoryEntry obDirEntry = new DirectoryEntry("user
identity string");
System.DirectoryServices.PropertyCollection coll =
obDirEntry.Properties;
object obVal = coll["FullName"].Value;
string str = obVal.ToString();
and automatically log them in to a ASP.NET application?>-----Original Message-----
>Hi,
>
>
>
>Does anybody know how to best identify users of a domain>
>
>
>Thank you!!
>
>
>
> Daniel
>szabelin Guest
-
Identify Application change
Say I have an page that has a variety of 20 fields defined. Is there anyway of knowing if any of them have changed? -
Allow domain users from anywhere ...
What security settings should I set to achieve the following: Web site can be accesed by all domain users from any computer over internet (i.e.... -
domain users/local users
I have joined an XP machine to a 2000 domain. I want to share the printer to one of the domain users. When I go to share it, I only get the users... -
Get remote users network name and domain in ASP?
Change the authentication mode to Windows Authentication. Then only valid domain accounts can use your application. If you still need the users'... -
Default Settings For Users On a NT Domain
I'm trying to setup a default desktop for users, so that all users will look the same. I have created the desktop the way I wanted it locally, but...



Reply With Quote

