美文网首页JSP专题
获取访问请求参数

获取访问请求参数

作者: 神坛下的我 | 来源:发表于2018-08-17 15:26 被阅读0次

    index.jsp

    <body>
        <a href="result.jsp?id=1&user=">点击处理</a>
    
    </body>
    

    result.jsp

    <body>
        <%String id=request.getParameter("id");
            String user=request.getParameter("user");
            String pwd=request.getParameter("pwd");
        %>
        id Value:<%=id %><br>
        user Value:<%=user %><br>
        pwd Value:<%=pwd %><br>
    </body>
    
    8.PNG

    相关文章

      网友评论

        本文标题:获取访问请求参数

        本文链接:https://www.haomeiwen.com/subject/ywftiftx.html