M
Mike Mueller
I am going to start tracking all the external links I have
using asp. What effect will this have on the PR for my site
and for the other sites when I use the following code. I
added the strDisUrl to allow the other site to get the
PageRank (Just trying to be thoughtful)
Any suggestions are appreciated along with comments
The link format
www.mysite.com/exit.asp?Destination=http://www.theirsite.com
and the coding for exit.asp
<%
dim strURL
dim strDisURL
strURL = Request.QueryString("Destination")
strDisURL = "<a href=" & strURL & ">" & strURL & "</a>"
-------code for saving the info
response.redirect(strURL)
%>
<html><body>
<% =strDisURL %>
</body></html>
using asp. What effect will this have on the PR for my site
and for the other sites when I use the following code. I
added the strDisUrl to allow the other site to get the
PageRank (Just trying to be thoughtful)
Any suggestions are appreciated along with comments
The link format
www.mysite.com/exit.asp?Destination=http://www.theirsite.com
and the coding for exit.asp
<%
dim strURL
dim strDisURL
strURL = Request.QueryString("Destination")
strDisURL = "<a href=" & strURL & ">" & strURL & "</a>"
-------code for saving the info
response.redirect(strURL)
%>
<html><body>
<% =strDisURL %>
</body></html>