root/trunk/SampleForm.html

Revision 49, 0.8 KB (checked in by yabuki, 3 years ago)

SampleFirm?.htmlを修正

Line 
1<?xml version="1.0" encoding="UTF-8" ?>
2<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
3<html xmlns="http://www.w3.org/1999/xhtml">
4<head>
5<meta http-equiv="Content-Type" content="text/html; charset=UTF-8" />
6<title>Sample Form</title>
7</head>
8<body>
9<form action="http://localhost:8080/RequestedParameters.jsp" method="get">
10  <table summary="Sample Form"><caption>送信したいデータ</caption>
11    <tr>
12      <td>First Name</td>
13      <td><input type="text" name="FirstName" value="" /></td>
14    </tr>
15    <tr>
16      <td>Last Name</td>
17      <td><input type="text" name="LastName" value="" /></td>
18    </tr>
19    <tr>
20      <td></td>
21      <td><input type="submit" name="submit" value="submit" /></td>
22    </tr>
23  </table>
24</form>
25</body>
26</html>
Note: See TracBrowser for help on using the browser.