Have the clicks call a program that will write to a database that someone
clicked on XYZ (e.g. banner.asp?id=xyz), then same program redirects them to
XYZ's web site (data stored in another table in same database)
>I have a website with some client banners, the problem is that they are not
>gerring the referral information when someone clics on any of the banners,
[quoted text clipped - 4 lines]
>
> TIA!
Carlos C - 21 Sep 2007 21:29 GMT
I already do that, so I register in my database all the clicks, but the have
stats services that do not show the users i redirect to their website as
coming from my website...no referral.
TIA!
> Have the clicks call a program that will write to a database that someone
> clicked on XYZ (e.g. banner.asp?id=xyz), then same program redirects them
[quoted text clipped - 8 lines]
>>
>> TIA!
Alexey Smirnov - 23 Sep 2007 16:45 GMT
> I already do that, so I register in my database all the clicks, but the have
> stats services that do not show the users i redirect to their website as
[quoted text clipped - 16 lines]
>
> - Show quoted text -
Try to create a special page e.g. redirect.aspx and use it to redirect
users:
response.redirect("redirect.aspx?url=http://www.clientswebsite.com")
The page should have a form
...
<body onLoad="document.forms[0].submit()">
<form method=post action=<%=Request.QueryString("url")%>>
</form>
....
and a script to submit it (document.forms[0].submit())
Hope this helps