Ask a Question related to ASP.NET Security, Design and Development.
-
Avi #1
XP user authentication
Folks,
Given the following function signature: bool AutheticateUser(string uid,
string pwd);
Can anyone tell me which .Net class.function API can I use to return
true/false if the password passes the XP authentication for a particular
machine / AD for the uid?
Many thanks,
Avi
[email]avi_farah@hotmail.com[/email]
Avi Guest
-
user authentication weirdness
On our development machine, running MySQL 5.0.19, I created a database alert_db, and for development purposes created a user called alert_db with a... -
User Authentication
Hi All: I would like to have certain areas of a site that I am developing password protected but I am not sure how to go about doing this. I know... -
User Authentication problems
hi everyone i am using a php site and i have been trying to implement user authentication by completing the macromedia tutorial "Macromedia -... -
SQL User authentication
Is it possible to authenticate user using a SQL database, containing users and passwords? What I want to achive is: I have as SQL database... -
DB User authentication.
Not a programmin newbie, but a PHP newbie. I'm working off the user authentication and database thing off hotscripts.com. It doesn't work, yet... -
Joe Kaplan \(MVP - ADSI\) #2
Re: XP user authentication
There is no .NET function for this yet, but you can call the LogonUser API
via pinvoke. The code sample in the MSDN documentation for
WindowsImpersonationContext has a nice sample.
Joe K.
"Avi" <Avi@discussions.microsoft.com> wrote in message
news:07B2C2A8-4406-4E6A-A529-E710655E4921@microsoft.com...> Folks,
>
> Given the following function signature: bool AutheticateUser(string uid,
> string pwd);
>
> Can anyone tell me which .Net class.function API can I use to return
> true/false if the password passes the XP authentication for a particular
> machine / AD for the uid?
>
> Many thanks,
> Avi
> [email]avi_farah@hotmail.com[/email]
>
>
Joe Kaplan \(MVP - ADSI\) Guest
-
Paul Clement #3
Re: XP user authentication
On Wed, 15 Dec 2004 11:09:01 -0800, Avi <Avi@discussions.microsoft.com> wrote:
¤ Folks,
¤
¤ Given the following function signature: bool AutheticateUser(string uid,
¤ string pwd);
¤
¤ Can anyone tell me which .Net class.function API can I use to return
¤ true/false if the password passes the XP authentication for a particular
¤ machine / AD for the uid?
That type of authentication is implemented in the below MS KB article:
HOW TO: Authenticate against the Active Directory by Using Forms Authentication and Visual Basic
..NET
[url]http://support.microsoft.com/default.aspx?scid=kb;en-us;326340[/url]
Paul ~~~ [email]pclement@ameritech.net[/email]
Microsoft MVP (Visual Basic)
Paul Clement Guest



Reply With Quote

