How to know client IP Address ?
-
Hi all, In my website I have made program that if any error will come then an email comes to me. I want to also know IP address,browsertype etc.. of that machine in the email. Thanks to all..
-
Hi all, In my website I have made program that if any error will come then an email comes to me. I want to also know IP address,browsertype etc.. of that machine in the email. Thanks to all..
-
Thanks Dear, But how can we get browser informatio ?
-
Thanks Dear, But how can we get browser informatio ?
Manas Bhardwaj Please remember to rate helpful or unhelpful answers, it lets us and people reading the forums know if our answers are any good.
-
Thanks Dear, But how can we get browser informatio ?
-
Hi all, In my website I have made program that if any error will come then an email comes to me. I want to also know IP address,browsertype etc.. of that machine in the email. Thanks to all..
private string GetClientIP() { string result = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"]; if (null == result || result == String.Empty) { result = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"]; } if (null == result || result == String.Empty) { result = HttpContext.Current.Request.UserHostAddress; } return result; }
April Comm100 - Leading Live Chat Software Provider