I'm sure I've got the concept behind Request.ServerVariables("HTTP_REFERER"), but I need some help.
fillform.html: located at formprocessor.asp located at
User fills out the form located at fillform.html, where the form action is "
Doing
at formprocessor.asp returns nothing.
Using
I see:
There is no HTTP_REFERER.
I want to authenticate the request from the referrer against a database value, so requests are only accepted from that particular server or file (
Help.
Thanks.
fillform.html: located at formprocessor.asp located at
User fills out the form located at fillform.html, where the form action is "
Doing
Code:
callingURL = Request.ServerVariables("HTTP_REFERER")
Response.write "<br>caller: " & callingURL & "<br>"
Using
Code:
For Each obj In Request.ServerVariables
Response.write obj & ": " & Request.ServerVariables(obj) & "<br>"
Next
I see:
Code:
LOCAL_ADDR: 69.44.152.113
REMOTE_ADDR: 24.66.94.141
REMOTE_HOST: 24.66.94.141
There is no HTTP_REFERER.
I want to authenticate the request from the referrer against a database value, so requests are only accepted from that particular server or file (
Help.
Thanks.