2011-08-16 83 views
0

我使用Netbeans java。我遇到了問題,我的網頁不能順序流動。我刪除了我的faces-config中這個特定JSP頁面的鏈接。我在這個JSP頁面中插入了一個刷新重定向功能,但它返回到上一頁。我擔心它與Netbeans的問題。任何人都遇到過這個問題?JSP頁面重定向失敗

*我重定向到JSP頁面被訪問時,URL手動鍵入在IE

<%@page contentType="text/html" pageEncoding="UTF-8"%> 

<%@taglib prefix="f" uri="http://java.sun.com/jsf/core"%> 
<%@taglib prefix="h" uri="http://java.sun.com/jsf/html"%> 
<style type="text/css"> 
@import "site.css"; 
</style> 
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" 
"http://www.w3.org/TR/html4/loose.dtd"> 

<f:view> 
<html> 
    <head> 
     <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/> 
     <title>Verification</title> 
     <META HTTP-EQUIV="Refresh" CONTENT="2;http://localhost:8080/MajorProject-war/faces/Reviewer/ReviewerIndex.jsp"> 
    </head><body BGCOLOR="#E0E0E0" TEXT="#000080"> 
     <div class="background"> 

<b><big>Verification successful</b></big> 
<br></br> Redirecting you to homepage...<br></br> 
<h:form> 


     </h:form> 
     </div> 
    </body> 
</html> 

回答

0

this url,內容屬性的值應該是:

2; url=http://localhost:8080/MajorProject-war/faces/Reviewer/ReviewerIndex.jsp 
+0

非常感謝!有效! – gymcode

相關問題