Ask a Question related to ASP.NET Security, Design and Development.
-
naija naija #1
Using Sessions with Windows Authentication
I'm using Windows Auth!
And i'm validating against a Datastore which is Active Directory.But i
want to use session to capture the USER LOGON between trips to the web
server.
What i want to do is to capture a particular USER LOGGED so that they
can see different settings on my ASP.NET page
Any ideas?
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
naija naija Guest
-
sessions and forms authentication tickets
When implementing ASP.NET forms authentication everything worked out just fine. I wanted to add the UserID and UserFName to my usage so I would... -
Windows 98 and TS sessions
We have a Windows 2003 server with Terminal server running. We have several Windows 98se machines that connect using RDP 5.1/2 client. None of... -
Forms authentication with Windows authentication
Hi, I have an ASP.NET web site that uses IIS Basic Authentication and accesses an OLAP Server at various stages. The OLAP Server authentication... -
Sessions, authentication, files and functions...
Hi... I'm writing a website builder. There are two 'halves' of it, codewise: The admin pages and the public pages. I intend to use sessions to... -
Sessions, authentication and $_SERVER
I'm trying to understand sessions and authentication. I gathered that the only way of preserving data across script invocations was to use a... -
Joe Kaplan \(MVP - ADSI\) #2
Re: Using Sessions with Windows Authentication
You don't need to use session for this. With Windows authentication,
Context.User will contain an IPrincipal object with the user's information
in it. The Identity.Name will have the Windows user name of the user who
logged in.
Joe K.
"naija naija" <patrick.ige@crazyjohns.com.au> wrote in message
news:O4QTZawtEHA.1176@TK2MSFTNGP11.phx.gbl...> I'm using Windows Auth!
> And i'm validating against a Datastore which is Active Directory.But i
> want to use session to capture the USER LOGON between trips to the web
> server.
> What i want to do is to capture a particular USER LOGGED so that they
> can see different settings on my ASP.NET page
> Any ideas?
>
>
>
>
> *** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
> Don't just participate in USENET...get rewarded for it!
Joe Kaplan \(MVP - ADSI\) Guest
-
naija naija #3
Re: Using Sessions with Windows Authentication
Yeah i know that!
But i want to pass the Identity.Name that is logged in to a SQL server
or to somewhere else..
Like the way we do with sessions?
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
naija naija Guest



Reply With Quote

