% session.timeout = 120 If session("Source") = "" or IsEmpty(session("Source")) or isNull(session("Source")) then If Request.querystring("Source") <> "" then Session("Source") = trim(Request.querystring("Source")) Else If Request.ServerVariables("HTTP_REFERER") <> "" then Session("Source") = trim(Request.ServerVariables("HTTP_REFERER")) Else Session("Source") = "no-referral" End If End If End If if Session("keywords") = "" then If Request.querystring("keywords") <> "" then Session("keywords") = trim(Request.querystring("keywords")) Else Session("keywords") = "" End If end if %>
| ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||