Ask a Question related to ASP, Design and Development.
-
Alex Maghen #1
Old ASP Windows User Identity
Is there a way in ASP (3.0, not .NET) for me to determine
who the current windows users is (i.e. the user who was
authenticated and who is "running" this IIS session)?
Alex
Alex Maghen Guest
-
Capturing identity of the user
Hi... I have made a asp page that accepts some data from user and stores it in MS Access database. Now...I want to identify the user who filled... -
HttpApplication.User.Identity.Name has old login id
I'm using HttpApplication.User.Identity.Name to get the login id for the current user and then using that login id to read custom security... -
*** User.Identity.Name
After a user logging on, User.Identity.Name contains domain/logon name of the current user. How to get other information of the current user such as... -
Context.User.Identity question
Hi! 1st: when I debug this: FormsAuthentication.SetAuthCookie(email.Text, RememberCheckbox.Checked) and set a breakpoint a line after -
User.Identity.Name
Hi, I am using Forms authentication -in which - I am trying to use User.Identity.Name, i am getting the user name in this field even after i... -
Ray at #2
Re: Old ASP Windows User Identity
Turn off anonymous access and use request.servervariables("logon_user")
Search [url]www.aspfaq.com[/url] for more info.
Ray at work
"Alex Maghen" <alex@maghen.com> wrote in message
news:018201c398be$ae298270$a301280a@phx.gbl...> Is there a way in ASP (3.0, not .NET) for me to determine
> who the current windows users is (i.e. the user who was
> authenticated and who is "running" this IIS session)?
>
> Alex
Ray at Guest
-
Bob Barrows #3
Re: Old ASP Windows User Identity
Alex Maghen wrote:
With Basic Authentication, Request.ServerVariables("AUTH_USER") should> Is there a way in ASP (3.0, not .NET) for me to determine
> who the current windows users is (i.e. the user who was
> authenticated and who is "running" this IIS session)?
>
> Alex
contain the name of the authenticated user.
With NT Challenge/Response, it's Request.ServerVariables("LOGON_USER")
HTH,
Bob Barrows
--
Microsoft MVP -- ASP/ASP.NET
Please reply to the newsgroup. The email account listed in my From
header is my spam trap, so I don't check it very often. You will get a
quicker response by posting to the newsgroup.
Bob Barrows Guest



Reply With Quote

