%@ page language="java" contentType="text/html; charset=EUC-KR"
pageEncoding="EUC-KR"%>
<%
String pollId = request.getParameter("pollId");
int id = Integer.parseInt(pollId);
Poll poll = new PollService().get(id);
if (poll == null) {
poll = new Poll();
}
ArrayList- items = poll.getItems();
%>
<%@page import="net.okjsp.poll.Poll"%>
<%@page import="net.okjsp.poll.PollService"%>
<%@page import="java.util.ArrayList"%>
<%@page import="net.okjsp.poll.Item"%>
¼³¹®º¸±â
¼³¹®º¸±â
Q : <%= poll.getQuestion() %>