获取客户端 IP 肯蒂科 9.



我需要获取访问该网站的客户所在的国家/地区。我可以使用GeoIPHelper.GetCountryByIp("ip")来获取Counry,但是如何获取访问站点的客户端的IP地址?

您是否正在使用 Kentico EMS?如果是这样,则要获取当前联系的国家/地区:

var countryId = ContactManagementContext.CurrentContact.ContactCountryId;
var country = CoutryInfoProvider.GetCountryInfo(countryId);

var currentLocation = GeoIPHelper.GetCurrentGeoLocation();

其中还包含基于当前请求的国家/州。

{%Ip%}在宏或var clientIp = CMS.Helpers.RequestContext.UserHostAddress

或者您想找出现有客户的ip?

那将是一个像 sql 查询

select Convert(xml,UserLastLogonInfo)  
from COM_Customer Join CMS_User on CustomerUserID = UserID

它会给你的XML,比如:

<info>
  <agent></agent>
  <ip></ip>
</info>

查看您的代码示例,我认为您在某处的代码中。 对于 ASP.NET 来说,这可能更像是一般的事情。 如果是这种情况,您可以使用HttpContext.Current.Request.UserHostAddress获取当前用户的 IP。

但是,如果您落后于负载均衡器之类的东西,则可能会出现问题。 为了解决这个问题,您可以尝试如下方法:

string userAddress = string.Empty;
if (HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"] != null)
{
    userAddress = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString();
}
else if (HttpContext.Current.Request.UserHostAddress.Length != 0)
{
    userAddress = HttpContext.Current.Request.UserHostAddress;
}
var country = GeoIPHelper.GetCountryByIp(userAddress);

CMS.Helpers.RequestContext也可以工作(如 Shof 所说(,但同样,请确保满足任何负载均衡器问题。 老实说,我总是从Kentico之前的习惯中回到使用HttpContext方法。

GeoLocation currentGeoLocation = GeoIPHelper.GetCurrentGeoLocation();
if (currentGeoLocation != null)
{
    var countryAndState = ValidationHelper.GetString(currentGeoLocation.CountryName, "");
    var ipCountryCode = ValidationHelper.GetString(currentGeoLocation.CountryCode, "");
    var ipRegion = ValidationHelper.GetString(currentGeoLocation.RegionName, "");
    var ipCity = ValidationHelper.GetString(currentGeoLocation.City, "");
}    

或宏

{% AnalyticsContext.CurrentGeoLocation.Country.CountryName%}
{% AnalyticsContext.CurrentGeoLocation.State%}
{% AnalyticsContext.CurrentGeoLocation.City%}
{% AnalyticsContext.CurrentGeoLocation.Postalcode%}

相关内容

  • 没有找到相关文章

最新更新