i thought to develop a technique in which image’s url won’t be contained in html source code directly. I want only encrypted urls to be contained in html source code at the client side.
I m working on .net with c#.
Not able to think where to start with.
I also could not find any similar techniques anywhere.
Can anyone suggest me some ideas, that is, where to start with??? Or probably tell me about any similar approach already existing somewhere.
plz reply asap..
Thank you in advance…
I would suggest you not to waste your time with things like this. If the image is ever to be shown in the browser it is a peace of cake to retrieve it with tools such as FireBug no matter how hard you try.
Now if you only wanted authenticated users to see the image you would simply serve it from a server side script which requires authentication:
and you configure authentication for the
somescript.ashxscript so that an unauthorized user cannot directly call it.