|
I wrote a page that specifically counts the information about customers visiting the website, and records the customer information with the following statement. trInfoRe = System.Web.HttpContext.Current.Request.UrlReferrer.ToString (); // The URL path of the client's last request
Now, every page of my website needs to load this page to be counted. I want to load it on the homepage, and then I can count the pages reached by customers. |
|