The Forum has been Updated
The code has been upgraded to the latest .NET core version. Please check instructions in the Community Announcements about migrating your account.
I have built a redirection page for some of my affiliate stuff to make it easier to code and track clicks. The code in the file is like this.....
Code:
<img src="http://c.statcounter.com/3850509/0/3927c8de/1/">
<%
if Request.QueryString("target") <> "" then
Dim target
target = Server.URLEncode(Right(Request.QueryString,Len(Request.QueryString)-7))
Response.Redirect ("http://affiliate.somesite.com/entry.asp?" & target)
else
Response.Write "You have reached this page in error!"
end if
%>
I pass the url to it in the query string and it works like a charm.
The problem is the StatCounter pixel never fires before the redirection. Is there any solution for this?
Thanks!<