Sorry for the delay... vacation was calling, but now I'm back at it. I'm afraid that doesn't seem to work. I'm not sure if maybe CompanyB isn't sending a referer, but when I tried to use a response.write to see it, I got nothing! I wrote "REFERER=" & vurl (my parameter) and I only seen my hardcoded REFERER= as a result.
SO - any other suggestions since I don't see a referer at all? I'm writing asp pages using VBScript and JavaScript.
Main Topics
Browse All Topics





by: ritetekPosted on 2008-02-28 at 00:40:15ID: 21002106
You mentioned Session, are you using some kind of server script like php? Because you could check the $_SERVER['HTTP_REFERER'] variable if so. You can see if it is set using the isset method and if it's not print some error message. You could check the url if it is set to see if it is from companyB. If you are using client side only you could use the document.referrer value for the same purpose.