Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations bkrike on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

protext again returning URL values

Status
Not open for further replies.

TheCandyman

Technical User
Sep 9, 2002
761
US
I pass some values in the URL because cookies/session variables are not an option. how can i do a check/validate to see if they just pulled it out of their browser history, or they are actually on my site going from page to page?

Suggestions? i was thinking of doing some sort of
Code:
Trim(Request.ServerVariables("HTTP_REFERER"))

Any suggestions, or better way?
 
ya i guess that would be the way to go...
Code:
If instr(Trim(Request.ServerVariables("HTTP_REFERER")),"whateveryouarelookingfor")>0 then
'do something
else
'quit
end if

-DNG
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top