string clientIP = Request.ServerVariables["HTTP_X_FORWARDED_FOR"];
if (clientIP == "" || clientIP == null)
{
clientIP = Request.ServerVariables["REMOTE_ADDR"];
No comments:
Post a Comment