| Les Matthews 2006-02-24, 10:16 pm |
| If you used DW's standard Login User behavior, then you could also use DW's
Restrict Access to Page behavior to acheive this.
Otherwise, you could do something like below (example in ASP):
<%
If Session("username") = "" Then
Response.Redirect("login.asp")
End If
%>
"Wally Kolcz" <wkolcz@projectproofing.com> wrote in message
news:dtnmps$4cn$1@forums.macromedia.com...
> Anyone know how to redirect a expired session to a new page rather than
> show a empty recordset error? All my pages contain recordsets. If the page
> is idle too long and you go back to make a page move it comes up with a
> EOF OR BOF error. How can I get it to go to a login page rather than show
> an error?
>
> --
> Wally Kolcz
> Developer / Support
> ProjectProofing.com
>
|