I have the following code in my page:
if (Request.QueryString("link_id") == "12345" )
{
Responce.Redirect("http://www.downloadsite.com/blablabla.png");
}
Now I want to hide that URL when somebody adds this link to his internet download manager :
http://www.mysite.com?link_id=12345
as you see the goal domain in different, I just want prevent my users to share my links.
Thanks in advance.