Ask a Question related to ASP.NET General, Design and Development.
-
Mattias Vartiainen #1
Servervariables different in ASP.NET
I have a filter (c/c++) on a site that handles authentication. A user
logs in using a username and password, the ISAPI filter looks up the
username in a database and then maps the username to another username
that is equal for all users (IUSR_SOMEUSER).
Later I need the individual username that the user has entered in the
first place. In asp I can get it from Servervariables("REMOTE_USER")
but in asp.net Servervariables("REMOTE_USER") contains the new
username. Why isn't the servervariables the same in .net??
If I log in with username mv I get
in asp:
REMOTE_USER = mv
AUTH_USER = IUSR_SOMEUSER
but in asp.net:
REMOTE_USER = COMPUTER\IUSR_SOMEUSER
AUTH_USER = IUSR_SOMEUSER
Mattias Vartiainen Guest
-
Request.ServerVariables(AUTH_USER)
I've noticed on my company's intranet that the Request.ServerVariables(AUTH_USER) command will not return a value unless the requesting web page's... -
Display Request.ServerVariables in .CFM
Can someone show me how to display the values of Request.ServerVariables in .CFM file? Many Thanks -
ServerVariables
I just loaded IIS 5.1 on my machine at home to do local ASP webpage development. One part of my ASP code is a simple... -
Request.ServerVariables Question
i would like to capture the server variables from a remote server in our org. is this possible ?? -
Sharing ServerVariables between ASP.NET and ASP
Take a look at http://www.sessionbridge.com. It is a utility that does just what you're looking for. Jeff Trotman Westglenn Software ...



Reply With Quote

