%@LANGUAGE="VBSCRIPT"%> <%Option Explicit%> <% ' this code redirects the user to the KIOSK site ' if the link user clicked comes from http://www.ncr.com/ dim strReferingDomain, strURL, arrURL strURL = Request.ServerVariables("HTTP_REFERER") if strURL <> "" then arrURL = Split(strURL, "/") strReferingDomain = arrURL(2) if strReferingDomain = "www.ncr.com" then response.redirect "http://www.iekiosk.com" end if end if %>
|