473,725 Members | 2,032 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Request.ServerV ariables("LOGON _USER") Reports web server login not client

First time I've seen this and I'm not even sure where to look for the
answer. An ASP page with only this code:

<% Response.Write "User: " & Request.ServerV ariables("LOGON _USER") %>

On most systems returns the domain\userID for the user on the
workstation, as expected. But I have one workstation (at least) where
this returns the domain\ID of whatever account is logged into the web
server.

This is an intranet and an AD domain but I don't think that matters.
It's also machine specific, the same user logged in at another system
works fine. Nothing else strange on the system that I know of, XP,
SP2, current on critical updates, no firewall enabled.

Any suggestions?

Jeff

Jan 6 '06 #1
3 6810
That's odd, Jeff. What comes up when no one is logged on to the server?
What does Request.ServerV ariables("AUTH_ USER") return? Does this person
have any sort of paranoia software installed, like Zone Alarm or anything?

Ray at work

"Jeff Cochran" <je*********@zi na.com> wrote in message
news:43******** *********@msnew s.microsoft.com ...
First time I've seen this and I'm not even sure where to look for the
answer. An ASP page with only this code:

<% Response.Write "User: " & Request.ServerV ariables("LOGON _USER") %>

On most systems returns the domain\userID for the user on the
workstation, as expected. But I have one workstation (at least) where
this returns the domain\ID of whatever account is logged into the web
server.

This is an intranet and an AD domain but I don't think that matters.
It's also machine specific, the same user logged in at another system
works fine. Nothing else strange on the system that I know of, XP,
SP2, current on critical updates, no firewall enabled.

Any suggestions?

Jeff

Jan 6 '06 #2
On Fri, 6 Jan 2006 10:13:46 -0500, "Ray Costanzo [MVP]" <my first name
at lane 34 dot commercial> wrote:
That's odd, Jeff. What comes up when no one is logged on to the server?
What does Request.ServerV ariables("AUTH_ USER") return? Does this person
have any sort of paranoia software installed, like Zone Alarm or anything?
AUTH_USER has the same results. Digest authentication doesn't chnage
this either. No paranoia software, user is local admin. I now have
found a second system that behaves this way. Still no known reason.

Jeff

Ray at work

"Jeff Cochran" <je*********@zi na.com> wrote in message
news:43******* **********@msne ws.microsoft.co m...
First time I've seen this and I'm not even sure where to look for the
answer. An ASP page with only this code:

<% Response.Write "User: " & Request.ServerV ariables("LOGON _USER") %>

On most systems returns the domain\userID for the user on the
workstation, as expected. But I have one workstation (at least) where
this returns the domain\ID of whatever account is logged into the web
server.

This is an intranet and an AD domain but I don't think that matters.
It's also machine specific, the same user logged in at another system
works fine. Nothing else strange on the system that I know of, XP,
SP2, current on critical updates, no firewall enabled.

Any suggestions?

Jeff


Jan 9 '06 #3

I've experienced similar problems with an Intranet system, it took me
ages to sus the problem however I found it to be the following.

1. Open Control Panel
2. Open User Accounts
3. You should see an advanced tab or button, click this
4. You may find that a username and password has been saved for your
webserver.

Apologies if this is vague or slightly inaccurate but the option is
only available when connected to a domain, and as I'm not at the moment
I'm doing it blind, so to speak.

Hope this helps.

--
S3Matt
------------------------------------------------------------------------
Posted via http://www.codecomments.com
------------------------------------------------------------------------

Jan 31 '06 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
3326
by: Amitava Bardhan | last post by:
Request.servervariables("Logon_USer") is working perfectly well for one asp page returning the NT userid as expected but returning an empty string for another asp page.Both the asp pages are in the same directory.This directory have both Anonymous Access and Integrated Authentication enabled att IIS. Any suggestion regarding this peculiar behaviour will be very much appreciated.
5
4396
by: T. | last post by:
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...
1
1897
by: Amitava Bardhan | last post by:
Request.servervariables("Logon_user") returns and empty string on one asp page but works perfectly well returning the NT user id on the other asp page. Both the pages are in the same directory. This directory has both Anonymous Access and Integrated Authentication enabled at the IIS.
0
1518
by: Amitava Bardhan | last post by:
Request.servervariable("Logon_User") working perfectly well returning the NT userid on one asp page but returning an empty string on the other asp page though both the asp pages are in the same directory. This directory has Anonymous access and Integrated Windows Authentication enabled in IIS
1
4808
by: dmjames | last post by:
For one of our machines, Request.ServerVariables("LOGON_USER") is returning the wrong value. Person A is logged into the machine (I watched him log in), but when he retrieves an aspx page Request.ServerVariables("LOGON_USER") returns the login of a different user -- a tech who logged in to his machine a week or two ago. It seems to be this one machine that's the problem. The user's login on other machines returns the correct value, and...
0
1361
by: Lyners | last post by:
We have an intranet where a majority of users are in our active directory, but not all. We have recently upgraded to using asp.net on our servers and during the rollout ran into a problem. The users in the non-active directory list could not access the website because of integrated security. Well after figuring out how to solve our problems, we have one problem left (which is actually one of our solutions). On the default.asp page we have...
1
1556
by: Ryan | last post by:
I am trying to figure out why I am trying to use the result of Request.ServerVariables("LOGON_USER") in a query in my aspx application. I want to use the server variable. When I check the length of the string that this method returns (len(Request.ServerVariables("LOGON_USER")) I get a number that is one greater than the the number of characters that are displaying, which of course causes a problem. Does anyone know why this is and...
1
10317
by: =?Utf-8?B?QnJhZCBLaW5n?= | last post by:
I recentlly converted some web services to 2.0. So far everything has worked great with the exception of one of the functions in an AD service. the following code: string sUser = HttpContext.Current.Request.ServerVariables; Worksk fine if debugging in VS 2005 but when I publish to the server. An empty string is returned. I have tried to catch an error and does not appear to be one.
7
18080
by: Smurfas | last post by:
Hi, everything simple: string strWhatever = Request.ServerVariables("LOGON_USER"); TextBox1.Text = strWhatever; Found, my Computer name. But how found another computer name, when I have IP. Some like that:
0
8888
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9401
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
9174
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9111
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6702
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6011
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
1
3221
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
2634
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2157
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.