response.sendRedirect跳转不成功!路径也没有错的if (rs.next()) { if (userclass.equals("挂号")) { response.sendRedirect("index.jsp"); }else if (userclass.equals("开处方")) { response.sendRedirect("User.jsp"); }

来源:学生作业帮助网 编辑:作业帮 时间:2024/11/02 21:26:43
response.sendRedirect跳转不成功!路径也没有错的if (rs.next()) {    if (userclass.equals(
x[O@ǿJmٍIg:Mu?1̭ť-4^JDQチQX?Ͷ~ gwE®>ڤ93'LB&q$!Eį eO'gsbZ|Y/V/Z J#sY\nkJ:3.Kzx!?,aŜ1%|I̋wƙ܁|MԠ8au9Ѡ8=:=c^v>,{Jz\+D%j]q=1C+_dZ%0Y, JB>kxܪfm̺B8&1@hDsǦ1e`á`"J1A.{,㜘-R< <˸1(1tXss TM,b2ȢpUc~zȁt*0)!tLBO0Xs GNecdPLPA{Դ h[H`[8#U;QtN8JsoM׿߼+^n+ e{/ۏ ӱ->`K23"LitdRYS͝;]`t Nq+}$wLHԽ 

response.sendRedirect跳转不成功!路径也没有错的if (rs.next()) { if (userclass.equals("挂号")) { response.sendRedirect("index.jsp"); }else if (userclass.equals("开处方")) { response.sendRedirect("User.jsp"); }
response.sendRedirect跳转不成功!路径也没有错的
if (rs.next()) {
if (userclass.equals("挂号")) {
response.sendRedirect("index.jsp");

}else if (userclass.equals("开处方")) {
response.sendRedirect("User.jsp");
}

} else {
response.sendRedirect("logon.jsp");
}

 

 

 

 

response.sendRedirect跳转不成功!路径也没有错的if (rs.next()) { if (userclass.equals("挂号")) { response.sendRedirect("index.jsp"); }else if (userclass.equals("开处方")) { response.sendRedirect("User.jsp"); }
如果你jsp页面是在项目的page目录下建议如下写
response.sendRedirect(request.getContextPath() + "/page/index.jsp");
其他类似.

你的页面是在根目录下面
response.sendRedirect(request.getContextPath() + /index.jsp");