J
John Smith
Hi,
I've been trying to play around with a simple script to stop people stealing
images (and bandwidth) but without much success :
strFolder="imageshidden"
strServer = lcase(Request.ServerVariables("server_name"))
If strServer="www.joebloggs.com" Then
strPic = strFolder & Request.QueryString("pic")
Else
strPic = "img/youarestealing.gif"
End If
Response.Redirect strPic
Is there an online tutorial or script for this ?
Thanks
John
I've been trying to play around with a simple script to stop people stealing
images (and bandwidth) but without much success :
strFolder="imageshidden"
strServer = lcase(Request.ServerVariables("server_name"))
If strServer="www.joebloggs.com" Then
strPic = strFolder & Request.QueryString("pic")
Else
strPic = "img/youarestealing.gif"
End If
Response.Redirect strPic
Is there an online tutorial or script for this ?
Thanks
John