/* Place these statements at the top of all pages that may be seen by valid users only. */
/* If the user has no access, send him to the login page... */
if (not has_access)
print varbin $null, "REDIRECT", "WebDAL.acgi$login.html";
/* If the previous page is not the "Welcome" page, the return the user to where
he came from! */
if ($lastpage != "welcome.html" and $lastpage != "fromwelcome.html")
print varbin $null, "REDIRECT", "WebDAL.acgi$"+$lastpage;
Accessable from Welcome Page
From Welcome Only:
This page has a check to ensure that it is only accessed from the Welcome Page. You can use this mechanism to ensure that a user takes a certain path through a WebDAL site.