Hi,
I would like to know if it's possible to specify the "target='FrameName'" in response.sendRedirect("Home.jsp") by any chance?
I tried this:
<!-- Security Check -->
<form action="Login" target="_top">
<%
if ((String) request.getSession(false).getAttribute("sessionStatus") == null) {
response.sendRedirect("Login?pageTimeout=yes");
}
%>
</form>
<!-- Security Check -->
But it doesn't work... The target remains the same.
Thanks,
-Ashton.