| Posted: 05 October 2007 at 8:24am | IP Logged
|
|
|
Hi Yaroslav,
Thanks for your reply. What I mean was, instead of using HTTP request to call the files protected behind hotlinkblocker(FPBH), is there anyway I can retrieve the FPBHs using local file access with hotlinkblocker?
For instance, in VB.NET, i can call the FPBH via http path,
//show1 is set as Literal show1.Text = "<IMG SRC='http://www.domain.com/" & Request.ServerVariables("HTTP_X_HOTLINKBLOCKER_SIGNATURE & "' >"
What I was trying to archive is, is it possible to call the file locally using system path or UNC path?
// directory 'IMG' has hotlinkblocker enabled and is the subroot of a website in IIS
show1.Text = "<IMG SRC=C:/folder1/IMG/" & Request.ServerVariables("HTTP_X_HOTLINKBLOCKER_SIGNATURE & "' >"
My goal is to use hotlinkblocker signature without using http request.
I hope this makes sense to you now. Thanks for your time on this.
|