问答详情
源自:3-7 request对象(上)

为什么出现404

这是提交前的

<body>

  <h1>用户注册</h1>

  <form action="request.jsp" name="regForm" method="post">

    <table>

     <tr>

      <td>用户登录</td>

      <td><input type="text" name="username"></td>

     </tr>

     <tr>

     <td>爱好</td>

     <td><input type="checkbox" name="favorite" value="read">读书

         <input type="checkbox" name="favorite" value="music">音乐

         <input type="checkbox" name="favorite" value="Internet">上网

        </td>

     </tr>

     <tr>

     <td colspan="2"><input type="submit" value="提交"></td>

     

     </tr>

    </table>

    </form>

  </body>

这是提交后的

<body>

    用户名<%=request.getParameter("username")%><br>

 爱好 <%

      String[] b=request.getParameterValues("favorite");

      for(int i=0;i<b.length;i++)

      {

      

      out.println(b[i]+"&nbsp;&nbsp;");

      

      }

    %>

  </body>


提问者:野猴子上山 2015-09-09 19:53

个回答

  • 好帮手慕珊
    2015-09-10 18:29:16
    已采纳

    404是访问的页面不存在,查看一下你的路径对吗