Hi i am using a frameset with 3 frames
TopFrame
LeftFrame
MainFrame
when users login in I validate there username and store it in a session variable, then at the top of every page I have the following
Then in empty.asp i redirect them back to the login page using the following
however depending which frame they try to use after session expires is where the login page tries to open.
i.e. if they click in the leftframe this is where the login page appears.
my question is how can i redirect to the parent for the login page ??
any help would be appreciated
Regards
Paul
TopFrame
LeftFrame
MainFrame
when users login in I validate there username and store it in a session variable, then at the top of every page I have the following
Code:
<%
If Session("Username") = "" Then
Response.Redirect "../Empty.asp"
End If
%>
Then in empty.asp i redirect them back to the login page using the following
Code:
<% response.Redirect("Login.asp") %>
however depending which frame they try to use after session expires is where the login page tries to open.
i.e. if they click in the leftframe this is where the login page appears.
my question is how can i redirect to the parent for the login page ??
any help would be appreciated
Regards
Paul