开发者

how to pull selected radio button in a jsp

I have two radio buttons, and depending on which one is selected I want to send them to a specific jsp page. I do not know how to pull which button is selected in my java class.

Here is the jsp:

<form method="post" action="ttp.actions.Sale1Action.action">

        <input type="radio" name="radio1" value="packages"checked> packages<br>
        <input type="radio" name="radio1" value="productions"> productions<br>

    <input type="submit" value="  next  "/>

</form>

here is the java:

public class Sale2Action implements Act开发者_JAVA技巧ion {

    public String process(HttpServletRequest request, HttpServletResponse response) throws Exception {


        String prodPack = request.getParameter("radio1");
        System.out.println("radio1 = " + prodPack);
        String venueID = request.getParameter("venueid");
        Venue v = VenueDAO.getInstance().read(venueID);


        if (prodPack.equals("packages")) {
            return "sale3a.jsp";
        } else {
            return "sale3b.jsp";
        }
    }
}


In the servlet, to determine which button is selected

String value = request.getParameter("radio1"); 

You will get the value. If you check packages, the value will be "packages". Radio group return one checked value.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜