can anybody tell me how to retrive the client ip, in asp.net, i want actual(real) client not the router ip like
Request.ServerVariables[
"HTTP_X_FORWARDED_FOR"];
Request.UserHostAddress.ToString();
Request.ServerVariables[
"REMOTE_ADDR"].ToString();
HttpContext.Current.Request.UserHostAddress;
these all gives me the upto router... but not actual client....
Thanks
MAHINDRAKAR....