KuoHsiangYu

JavaWeb1/index.jsp

May 26th, 2019
219
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
HTML 1.32 KB | None | 0 0
  1. <!-- JavaWeb1/src/main/webapp/index.jsp -->
  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>
  5. <html>
  6. <head>
  7. <meta charset="UTF-8">
  8. <title>index jsp</title>
  9. </head>
  10. <body bgcolor="#ffffce">
  11.     <c:set value="#c4e1ff" var="color" />
  12.     <div align="center">
  13.         <h1>index jsp</h1>
  14.         <form name="indexForm" action="inputController" method="POST">
  15.             <table border="1" width="50%">
  16.                 <thead>
  17.                     <tr bgcolor="${color}">
  18.                         <th height="60" colspan="4" align="center">職業調查表單</th>
  19.                     </tr>
  20.                 </thead>
  21.                 <tbody>
  22.                     <tr bgcolor="${color}">
  23.                         <td width="120" height="40" align="right">編號:</td>
  24.                         <td width="600" height="40" align="left">
  25.                             <input style="text-align: left" name="id_name" type="text" size="46" />
  26.                         </td>
  27.                     </tr>
  28.                     <tr bgcolor="${color}">
  29.                         <td width="120" height="40" align="right">職業別:</td>
  30.                         <td width="600" height="40" align="left">
  31.                             <input style="text-align: left" name="job_category_name" type="text" size="46" />
  32.                         </td>
  33.                     </tr>
  34.                 </tbody>
  35.             </table>
  36.             <input type="submit" value="新增" name="insert_name" />
  37.             <input type="submit" value="修改" name="update_name" />
  38.         </form>
  39.     </div>
  40. </body>
  41. </html>
Advertisement
Add Comment
Please, Sign In to add comment