0

我有两个jsps。一个是login_first.jsp,另一个是main.jsp。提交后login_first.jsp,我打电话main.jsp。它工作正常。

我有注销按钮,main.jsp其中将控制权发送回login_first.jsp. 它执行login_first.jsp但页面未加载。请帮忙。

login_first.jsp

<%@ page session="false" %>
<%
try {   
    HttpSession session = request.getSession(true); 
    if ("Submit".equals(request.getParameter("SubmitButton"))) {                                
        session.setAttribute("userLoggedIn", "true");               
        response.sendRedirect("main.jsp");          
        return;                             
    } else {            
        session.setAttribute("userLoggedIn", "false");              
        session.invalidate();
    }    
%>                                                                                                 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
    <body>      
        <form name="loginForm" method="post">           
            <table>             
                <tr>            
                    <td><input type="submit" name="SubmitButton" value="Submit" class=button/></td>
                </tr>       
            </table>                                                    
        </form>
    </body> 
<%
} catch (Exception e) {
    e.printStackTrace();    
    response.sendRedirect("login_first.jsp");           
    return;
} 
%>
</html>

主.jsp

<%@ page session="false" %>
<%
try {   
    HttpSession session = request.getSession(false);    
    if (session != null && "true".equals(session.getAttribute("userLoggedIn"))
            && !"Logout".equalsIgnoreCase(request.getParameter("logout"))) {        
        // do work          
    } else {        
        if (session != null) {
            session.setAttribute("userLoggedIn", "false");              
        }
        response.sendRedirect("login_first.jsp");           
        return;
    }    
%>                                                                                                 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
    <body>      
        <form name="creditCardForm" target="formresponse" autocomplete="off" method="post">                 
            <table width="50%" border=0 cellpadding=3 cellspacing=1>            
                <tr>                    
                    <td>            
                        <div align="right">                                                                                    
                            <input name="logout" type="submit" class=button value="Logout">                           
                        </div>                  
                    </td>
                </tr>               
            </table>                    
            <iframe name="formresponse" width="0" height="0" style="visibility:hidden"></iframe>
        </form>
    </body> 
<%
} catch (Exception e) {
    e.printStackTrace();
    response.sendRedirect("login_first.jsp");   
    return;
} 
%>
</html>
4

4 回答 4

0

首先,两个页面都设置了“session=false”,但您正在尝试获取/设置 Session 中的属性。您确定它完全按预期工作吗?

其次,您只能在任何数据发送回客户端之前(在缓冲区刷新之前)调用 response.sendRedirect()。你确定它发生在你的情况下吗?

于 2012-04-04T12:09:51.023 回答
0

尽管 scriptlet 已经过时,但我认为您应该检查有关 JSP 文件所在位置的文档以及是否需要在重定向 URL 上使用前导/;例如/first_login.jsp,而不是first_login.jsp.

于 2012-04-04T12:21:59.437 回答
0

我刚刚发现target="formresponse"main.jsp 中有问题。因此,我已将此注销移至单独的表单并添加了操作。

于 2012-04-04T13:09:48.883 回答
0

但是相同的 sendRedirect 正在 first_login.jsp 中工作。从 main.jsp 到 login_first.jsp 不工作。

一个原因可能是您的 main.jsp 位于某个子文件夹中。

于 2012-04-04T17:51:48.490 回答