Please go to http://www.explorencmountains.com/Category.aspx?CatID=76 for an example. If you click on "Get More Information About ______", it will add one to the views for that listing. I know how to do that. But I'd like to be able to count how many people have viewed the company's web site from my web site. I am not sure how to do this.
My code for counting the hits to the listing itself (displayadvertiser.aspx) on my web site is:
SqlCmd.CommandText = String.Format("UPDATE Advertiser SET Views = Views + 1 WHERE AdvertiserID = '{0}'", strAdID)
This used a querystring so this is different. Could someone please help me? The code needs to be done in VB.Net/ASP.Net.