我正在將我的請求從Login servlet轉發到位於faculty文件夾(它是子文件夾)中的FacultyHomePage.jsp ....顯示頁面,但url仍爲/ LoginServlet。 爲什麼不更改網址?即使在servlet中請求調度之後,URL也不會更改
HttpSession sc= request.getSession();
if(usertype==0)
{
sc.setAttribute("type", usertype);
sc.setAttribute("id",id);
rd=request.getRequestDispatcher("/faculty/FacultyHomePage.jsp");
rd.forward(request, response);
}
因爲你做了** **着我 – 2013-03-20 08:04:24
是新來這個concept.Please你能解釋一下如何改變網址? – Vini 2013-03-20 08:07:31
檢查我的答案。 – 2013-03-20 08:10:42