root/trunk/myweb/WebContent/View.jsp

Revision 26, 0.9 KB (checked in by yabuki, 3 years ago)
  • Property svn:mime-type set to text/plain
Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<%@ page language="java" contentType="text/html; charset=UTF-8" pageEncoding="UTF-8"%>
3<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
4<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
5<html xmlns="http://www.w3.org/1999/xhtml">
6<head>
7<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
8<title>郵便番号検索</title>
9</head>
10<body>
11<form action="Controller" method="post">
12  <p>
13    <input type="text" name="zip" value='<c:out value="${param.zip}" />' />
14    <input type="submit" name="submit" value="検索" />
15  </p>
16</form>
17<c:if test="${!empty theModel}">
18  <h2>検索結果</h2>
19  <ul>
20    <c:forEach var="result" items="${theModel.results}">
21      <li><c:out value="${result[0]}: ${result[1]}" /></li>
22    </c:forEach>
23  </ul>
24</c:if>
25</body>
26</html>
Note: See TracBrowser for help on using the browser.