request.servervariables Questions
2
Solved
When is the apropriate time (part of code) that i can gather information from servervariables? I mean, i have tried calling this
string temp = Request.ServerVariables.Get("HTTP_REMOTE_USER");
in...
Readability asked 10/6, 2009 at 12:30
0
This is a little annoying thing. Definitely not a show stopper. What is the equivalent of Request.ServerVariables?
Specifically, I would like to know how I get the current URL?
I have previously do...
Mcdaniels asked 20/11, 2017 at 14:45
2
Solved
In exisiting .Net Web Site, Server Variables is accessed using
HttpContext.Current.Request.ServerVariables["HTTP_ACCEPT_LANGUAGE"]
How to access the ServerVariables in AspnetCore 1.0 Web Applic...
Tarter asked 18/7, 2016 at 6:8
3
Solved
I am maintaining a classic asp application and while going over the code I came across two similar lines of code:
Request.ServerVariables("URL")
' Output: "/path/to/file.asp"
Request.ServerVariab...
Ordway asked 27/3, 2009 at 12:53
1
Solved
Currently I am using Request.ServerVariables["REMOTE_ADDR"] to get the IP from the client.
What guarantees I get when calling this Method. Or should I look in other ServerVariables as well?
Proliferation asked 13/8, 2010 at 22:26
1
© 2022 - 2024 — McMap. All rights reserved.