当前位置:编程学习 > JAVA >>

JSP+javabean+servlet的课程管理系统,学生选课时,跳转不到选课的那个页面!希望有好心人帮助我一下吧。。。

    //如果参数中是注册课程参数
    if("enrol".equalsIgnoreCase(action)){
    
    doEnrol(req,res,stu_id,cour_id,class_id,prepare);
   
    res.sendRedirect("DisplayCourse.jsp"); }
          
    }
    
    //注册课程课方法
    public void doEnrol(HttpServletRequest req, HttpServletResponse res,
    String stu_id,String cour_id,String class_id,String prepare)
                           
                           throws ServletException, IOException {
                          
        int num=0;  
        //声明JavaBean对象
        checkEnrol check=new checkEnrol();  
         //如果预修课学分为0,则注册     
        if(prepare.equals("0")  ) 
         {  num= check.enrol(class_id,stu_id);  }
        else   {
              //判断预修课是否符合要求   
             if( check.hasPassPrepare(prepare))                              
               {num= check.enrol(class_id,stu_id);}
                else doError(req,res,"清先完成预修课");
                        return;                                       
                }
        
         if(num==0){
         doError(req,res,"注册课程失败!!");
         return;
         }
                          
                            }




就是跳转不到DisplayCourse.jsp这个页面!!!!! --------------------编程问答-------------------- 首先确认一下确实已经走到了这一条语句,如果走到了,再确认一下该JSP文件的路径是否正确。
补充:Java ,  Web 开发
CopyRight © 2022 站长资源库 编程知识问答 zzzyk.com All Rights Reserved
部分文章来自网络,