Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > Request.ServerVariables("Logon_User")

Reply
Thread Tools

Request.ServerVariables("Logon_User")

 
 
T.
Guest
Posts: n/a
 
      10-01-2004
Hello,

I'm trying to pull the logon user's name using
Request.ServerVariables("LOGON_USER")...which is returning nothing...so I
need help in determining why it's returning nothing, or I need the format in
which it returns the username so that I can hard code it. Does it return
anything with the username?

Thanks...


 
Reply With Quote
 
 
 
 
Shiva
Guest
Posts: n/a
 
      10-01-2004
Hi,
It will be empty if anonymous access is allowed. Deny anonymous
authentication and turn on Basic, Digest or Integrated auth to force
authentication and hence get a value for LOGON_USER server variable.

HTH

"T." <> wrote in message
news:OebCjr#...
Hello,

I'm trying to pull the logon user's name using
Request.ServerVariables("LOGON_USER")...which is returning nothing...so I
need help in determining why it's returning nothing, or I need the format in
which it returns the username so that I can hard code it. Does it return
anything with the username?

Thanks...



 
Reply With Quote
 
 
 
 
T.
Guest
Posts: n/a
 
      10-01-2004
Shiva my friend...this is exactly what I did...and no luck.

strLoginID = Request.ServerVariables("LOGON_USER")
response.write strLoginID

Returns nothing....

"Shiva" <> wrote in message
news:uyQYwy#...
> Hi,
> It will be empty if anonymous access is allowed. Deny anonymous
> authentication and turn on Basic, Digest or Integrated auth to force
> authentication and hence get a value for LOGON_USER server variable.
>
> HTH
>
> "T." <> wrote in message
> news:OebCjr#...
> Hello,
>
> I'm trying to pull the logon user's name using
> Request.ServerVariables("LOGON_USER")...which is returning nothing...so I
> need help in determining why it's returning nothing, or I need the format

in
> which it returns the username so that I can hard code it. Does it return
> anything with the username?
>
> Thanks...
>
>
>



 
Reply With Quote
 
Marina
Guest
Posts: n/a
 
      10-01-2004
Do you have only windows authentication on, on the virtual directory your
app is in?

"T." <> wrote in message
news:O3ccu7%...
> Shiva my friend...this is exactly what I did...and no luck.
>
> strLoginID = Request.ServerVariables("LOGON_USER")
> response.write strLoginID
>
> Returns nothing....
>
> "Shiva" <> wrote in message
> news:uyQYwy#...
> > Hi,
> > It will be empty if anonymous access is allowed. Deny anonymous
> > authentication and turn on Basic, Digest or Integrated auth to force
> > authentication and hence get a value for LOGON_USER server variable.
> >
> > HTH
> >
> > "T." <> wrote in message
> > news:OebCjr#...
> > Hello,
> >
> > I'm trying to pull the logon user's name using
> > Request.ServerVariables("LOGON_USER")...which is returning nothing...so

I
> > need help in determining why it's returning nothing, or I need the

format
> in
> > which it returns the username so that I can hard code it. Does it

return
> > anything with the username?
> >
> > Thanks...
> >
> >
> >

>
>



 
Reply With Quote
 
T.
Guest
Posts: n/a
 
      10-01-2004
That option is selected but not available...so I tried every possible
combinations for those options...also my web.config authenication is set to
"Windows"


"Marina" <> wrote in message
news:e8dtuA$...
> Do you have only windows authentication on, on the virtual directory your
> app is in?
>
> "T." <> wrote in message
> news:O3ccu7%...
> > Shiva my friend...this is exactly what I did...and no luck.
> >
> > strLoginID = Request.ServerVariables("LOGON_USER")
> > response.write strLoginID
> >
> > Returns nothing....
> >
> > "Shiva" <> wrote in message
> > news:uyQYwy#...
> > > Hi,
> > > It will be empty if anonymous access is allowed. Deny anonymous
> > > authentication and turn on Basic, Digest or Integrated auth to force
> > > authentication and hence get a value for LOGON_USER server variable.
> > >
> > > HTH
> > >
> > > "T." <> wrote in message
> > > news:OebCjr#...
> > > Hello,
> > >
> > > I'm trying to pull the logon user's name using
> > > Request.ServerVariables("LOGON_USER")...which is returning

nothing...so
> I
> > > need help in determining why it's returning nothing, or I need the

> format
> > in
> > > which it returns the username so that I can hard code it. Does it

> return
> > > anything with the username?
> > >
> > > Thanks...
> > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
William F. Robertson, Jr.
Guest
Posts: n/a
 
      10-01-2004
What do you mean the option for integrated authentication is "selected but
not available"?

If you are using NT authentication, dump the logon_user lookup and go with
User.Idenity.Name.

bill

"T." <> wrote in message
news:%23Wis3F$...
> That option is selected but not available...so I tried every possible
> combinations for those options...also my web.config authenication is set

to
> "Windows"
>
>
> "Marina" <> wrote in message
> news:e8dtuA$...
> > Do you have only windows authentication on, on the virtual directory

your
> > app is in?
> >
> > "T." <> wrote in message
> > news:O3ccu7%...
> > > Shiva my friend...this is exactly what I did...and no luck.
> > >
> > > strLoginID = Request.ServerVariables("LOGON_USER")
> > > response.write strLoginID
> > >
> > > Returns nothing....
> > >
> > > "Shiva" <> wrote in message
> > > news:uyQYwy#...
> > > > Hi,
> > > > It will be empty if anonymous access is allowed. Deny anonymous
> > > > authentication and turn on Basic, Digest or Integrated auth to force
> > > > authentication and hence get a value for LOGON_USER server variable.
> > > >
> > > > HTH
> > > >
> > > > "T." <> wrote in message
> > > > news:OebCjr#...
> > > > Hello,
> > > >
> > > > I'm trying to pull the logon user's name using
> > > > Request.ServerVariables("LOGON_USER")...which is returning

> nothing...so
> > I
> > > > need help in determining why it's returning nothing, or I need the

> > format
> > > in
> > > > which it returns the username so that I can hard code it. Does it

> > return
> > > > anything with the username?
> > > >
> > > > Thanks...
> > > >
> > > >
> > > >
> > >
> > >

> >
> >

>
>



 
Reply With Quote
 
vandtran vandtran is offline
Junior Member
Join Date: Nov 2008
Posts: 1
 
      11-18-2008
Hi,

In my virtual directory security, whenever I disable the anonymous access and Integrated windows authentication checked, users from my intranet site have to logon with there windows login. Is there a way to bypass the logon?

Thanks,
 
Reply With Quote
 
RiaanBod RiaanBod is offline
Junior Member
Join Date: Apr 2011
Posts: 1
 
      04-28-2011
Request.ServerVariables("LOGON_USER") displays login info, but it displays the user logged on to the server and not the local user name.
 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off




Advertisments