리비전 5, 0.9 kB
(mefour에 의해 체크인됨, 16 년 전)
|
--
|
- svn:mime-type 속성이
text/plain (으)로 설정되어있습니다.
|
Line | |
---|
1 |
<%@ page language="java" contentType="text/html; charset=EUC-KR" |
---|
2 |
pageEncoding="EUC-KR"%> |
---|
3 |
<% |
---|
4 |
String pollId = request.getParameter("pollId"); |
---|
5 |
String itemId = request.getParameter("itemId"); |
---|
6 |
int pid = Integer.parseInt(pollId); |
---|
7 |
int iid = Integer.parseInt(itemId); |
---|
8 |
|
---|
9 |
new PollService().countUp(pid, iid); |
---|
10 |
%> |
---|
11 |
<!DOCTYPE html PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"> |
---|
12 |
|
---|
13 |
<%@page import="net.okjsp.poll.PollService"%><html> |
---|
14 |
<head> |
---|
15 |
<meta http-equiv="Content-Type" content="text/html; charset=EUC-KR"> |
---|
16 |
<title>설문참여</title> |
---|
17 |
<script> |
---|
18 |
function resultGo(){ |
---|
19 |
document.location.href="report.jsp"; |
---|
20 |
} |
---|
21 |
</script> |
---|
22 |
</head> |
---|
23 |
<body> |
---|
24 |
<h1>설문 참여</h1> |
---|
25 |
<h2> |
---|
26 |
설문에 참여하셨습니다. |
---|
27 |
</h2> |
---|
28 |
<input type="button" value="결과보기" |
---|
29 |
onclick="document.location.href='report.jsp?pollId=<%= pollId %>'"> |
---|
30 |
</body> |
---|
31 |
</html> |
---|