Quote:
Originally Posted by chrishirst
Does it need to carry the querystring values with it?
|
No. The script uses POST not GET, yet people link to it with a query string.
I used this code on a page I have that had at one time been used for affiliates that worked, but doesn't for this page???
<%
If Request.QueryString("Affid") Then
Response.Buffer = True
Response.Status = "301 Moved Permanently"
Response.AddHeader "Location", "http://www.searchbliss.com/generators.asp"
Response.Flush
Response.End
End If
%>
The query string has rank=www.someidiotsdomain.com, so when I replace "Affid" with "rank" and redirect to ...com/rank.asp I get a 404 when I use the query string, and NOT when I don't???
Thanks Chris!
Last edited by kline11; 05-26-2010 at 04:41 PM..
|