Forum Moderators: open
Richard Lowe
In the global.asa I initialize it in the Session_Start event:
Session("HOPS") = 0
Then I have a standard include file that has mostly common functions, etc. that is included in every page on my site. At the top of this included file I have:
Session("HOPS") = Session("HOPS") + 1
Now, at the top of your mail form put this code:
If Session("HOPS") = 0 Then
Response.redirect("MyHomePage")
end if