No announcements
Found 1372622 threads
-
0 Votes
System.Net.Dns.GetHostEntry(Request.ServerVariables["remote_addr"]).HostName
Hi, In my .net framwork 3.5 C# web IIS 6 environment.Answered | 1 Replies | 6280 Views | Created by JasonHuang8888 - Friday, June 8, 2012 2:36 AM | Last reply by Mr. Javaman II - Friday, June 8, 2012 3:44 AM -
0 Votes
Difference between Request.ServerVariables["HTTP_X_FORWARDED_FOR"] and Request.ServerVariables["REMOTE_ADDR"] in .net
Also, parsing is different, because the X-Forwarded-For is generally comma separated list of addresses.Answered | 3 Replies | 728 Views | Created by Anonymous - Friday, July 27, 2007 3:47 AM | Last reply by Anonymous - Friday, March 16, 2012 2:34 AM -
1 Votes
How To Get IP Address When Somebody Logins to the Asp.net Web Application
Hi, The forum supports .Net Framework Setup.Answered | 2 Replies | 1289 Views | Created by Bhupinder_Singh - Friday, November 29, 2013 10:49 PM | Last reply by Samson Sun - MSFT - Monday, December 2, 2013 6:27 AM -
0 Votes
Question about -- Request.ServerVariables("REMOTE_ADDR")
User-691245060 posted Even if you redirect in between servers, there will not be any change in Request Headers...but at the same time you cannot truct REMOTE_ADDR ...Answered | 4 Replies | 64 Views | Created by Anonymous - Monday, September 24, 2012 8:21 AM | Last reply by Anonymous - Wednesday, September 26, 2012 5:40 AM -
0 Votes
what is the difference between "HTTP_X_FORWARDED_FOR" and "REMOTE_ADDR"
So if no proxys were involved, they would match, but if a proxy were involved, then HTTP_X_FORWARDED_FOR might look like this: realclientIP, ...Answered | 2 Replies | 5629 Views | Created by Anonymous - Thursday, December 1, 2011 12:26 PM | Last reply by Anonymous - Thursday, December 1, 2011 7:44 PM -
0 Votes
Request.ServerVariables("server_name") spoofed
Request.ServerVariables is used in application code so I'm not understanding just yet how you know that it's returning these values and how that relates to any logging.Unanswered | 4 Replies | 205 Views | Created by Anonymous - Thursday, June 25, 2009 8:23 AM | Last reply by Anonymous - Friday, June 26, 2009 8:22 AM -
0 Votes
Request.ServerVariables["HTTP_REFERER"].
There are many reason u might not get value in the HTTP_REFERER srever variable here is the code to use string sv = ...Answered | 4 Replies | 2307 Views | Created by Anonymous - Monday, January 28, 2008 3:48 PM | Last reply by Anonymous - Tuesday, January 29, 2008 10:16 PM -
0 Votes
Request.ServerVariables("REMOTE_ADDR") returns 127.0.0.1 instead of actual ip address
User1416329745 posted It could be the person have Asp files because when you run a search on REMOTE_ADDR you get Asp and Php entries in Google.Answered | 8 Replies | 419 Views | Created by Anonymous - Thursday, September 7, 2006 4:48 PM | Last reply by Anonymous - Friday, September 8, 2006 4:50 PM -
0 Votes
Request.ServerVariables["REMOTE_ADDR"] - Wrong values?
User-1564860527 posted The REMOTE_ADDR variable may vary depending on the situation.Unanswered | 1 Replies | 271 Views | Created by Anonymous - Monday, November 6, 2006 5:54 AM | Last reply by Anonymous - Monday, November 6, 2006 4:28 PM -
0 Votes
request.servervariables
If you are interested in the authenticated user, please use Request.ServerVariables("AUTH_USER") or User.Identity.Name.Unanswered | 5 Replies | 203 Views | Created by Anonymous - Thursday, May 12, 2005 8:54 AM | Last reply by Anonymous - Thursday, May 12, 2005 12:00 PM -
0 Votes
what's the difference between User.Identity.Name and Request.ServerVariables["LOGON_USER"] ?
User1694595804 posted I know the reason now, ServerVariables have different value as ...Answered | 1 Replies | 110 Views | Created by Anonymous - Wednesday, May 10, 2006 10:39 PM | Last reply by Anonymous - Thursday, May 11, 2006 12:14 AM -
0 Votes
Request.ServerVariables
I tried below - dim ipAdress as string = Request.ServerVariables("REMOTE_HOST'") Response.Write ("Your IP Address is : " ...Unanswered | 1 Replies | 32 Views | Created by Anonymous - Wednesday, July 5, 2006 10:53 PM | Last reply by Anonymous - Thursday, July 6, 2006 12:39 AM -
0 Votes
Request.ServerVariable in web.config
User400292315 posted I'm converting a site from coldfusion to .net.Unanswered | 6 Replies | 296 Views | Created by Anonymous - Wednesday, June 29, 2005 5:49 PM | Last reply by Anonymous - Thursday, June 30, 2005 1:03 PM -
0 Votes
App_Code, class.vb and Request.ServerVariables
User-484054684 posted Request.ServerVariables is for Web applications, which corresponds to HTTP Request.Answered | 3 Replies | 153 Views | Created by Anonymous - Thursday, January 1, 2015 11:58 AM | Last reply by Anonymous - Thursday, January 1, 2015 12:26 PM -
0 Votes
Request.ServerVariables and another pc
User1444272184 posted string[] computer_name = System.Net.Dns.GetHostEntry(Request.ServerVariables["remote_addr"]).HostName.Split(new Char[] { '.'Answered | 8 Replies | 51 Views | Created by Anonymous - Sunday, July 20, 2008 4:15 PM | Last reply by Anonymous - Tuesday, July 22, 2008 4:25 PM -
0 Votes
Request.ServerVariables
User71929859 posted Request.ServerVariables["HTTP_REFERER"] is not working when user comes ...Answered | 5 Replies | 103 Views | Created by Anonymous - Thursday, November 14, 2013 5:15 AM | Last reply by Anonymous - Thursday, November 14, 2013 9:06 PM -
0 Votes
Request.ServerVariables problem
User-1348799698 posted I have not been able to figure out the reason for the error, but this code works: for (int i = 0; iUnanswered | 2 Replies | 51 Views | Created by Anonymous - Wednesday, November 22, 2006 9:36 AM | Last reply by Anonymous - Monday, December 4, 2006 2:26 AM -
0 Votes
request.servervariables returning different user
So my question is, As I did not undo the impersoantion, that impersonation is going to be at only that page level or entire web site When I ...Answered | 3 Replies | 30 Views | Created by Anonymous - Tuesday, July 7, 2009 7:10 PM | Last reply by Anonymous - Wednesday, July 8, 2009 8:34 AM -
0 Votes
Request.ServerVariables("HTTP_HOST")
Request.ServerVariables("HTTP_HOST") would be an easy way for us to validate the forms that aren't using CAPTCHA.Answered | 2 Replies | 76 Views | Created by Anonymous - Monday, October 2, 2006 9:42 PM | Last reply by Anonymous - Tuesday, October 3, 2006 9:34 AM -
0 Votes
Request.ServerVariables("LOGON_USER").....
It's displaying "Server Name" and "Server Path" when i use Server ...Unanswered | 3 Replies | 43 Views | Created by Anonymous - Wednesday, November 21, 2007 11:51 AM | Last reply by Anonymous - Monday, November 26, 2007 7:01 AM - Items 1 to 20 of 1372622 Next ›
No announcements