本文介绍了在asp.net找到回访者的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

交易全部



i我在电子商务网站工作有没有找到回访者的方式





i使用以下代码但不起作用。当多个用户连接wifi时,它只告诉公众



 ipaddressVal = HttpContext.Current.Request.ServerVariables [  HTTP_X_FORWARDED_FOR]; 

if (!string.IsNullOrEmpty(ipaddressVal))
{
string [] ipRange = ipaddressVal.Split(' ,');
int le = ipRange.Length - 1 ;
ipaddressVal = ipRange [le];
}
else
ipaddressVal = HttpContext.Current.Request.ServerVariables [ REMOTE_ADDR];
解决方案


deal all

i am working on e commerce website is there any way to find returning visitor


i use following code but not work. when multiple user connected with wifi it only tell public

ipaddressVal = HttpContext.Current.Request.ServerVariables["HTTP_X_FORWARDED_FOR"];

        if (!string.IsNullOrEmpty(ipaddressVal))
        {
            string[] ipRange = ipaddressVal.Split(',');
            int le = ipRange.Length - 1;
            ipaddressVal = ipRange[le];
        }
        else
            ipaddressVal = HttpContext.Current.Request.ServerVariables["REMOTE_ADDR"];
解决方案


这篇关于在asp.net找到回访者的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-02 03:43