📄 enter_player.jsp
字号:
<%@ page session="true" %>
<%@ taglib prefix="c" uri="http://java.sun.com/jsp/jstl/core" %>
<%@ taglib prefix="html" uri="http://jakarta.apache.org/struts/tags-html" %>
<%-- Create the Progress Monitor --%>
<br/>
<table border='1' cellspacing='0' cellpadding='0' width='100%'>
<tr height='20'>
<td bgcolor='#CCCCCC' align='center' valign='center' height='20'>
<b>1) Select League</b>
</td>
<td bgcolor='#CCCCFF' align='center' valign='center' height='20'>
<b>2) Enter Player Info</b>
</td>
<td bgcolor='#CCCCCC' align='center' valign='center' height='20'>
<b>3) Select Division</b>
</td>
</tr>
</table>
<br/>
<%-- Report any errors (if any) --%>
<html:errors />
<%-- Present the form --%>
<form action='<c:url value="enter_player.do" />' method='POST'>
<%-- Repopulate the name field --%>
Name: <input type='text' name='name' value='${param.name}' />
<br/><br/>
<%-- Repopulate the address field --%>
Address: <input type='text' name='address' value='${param.address}' />
<br/><br/>
<%-- Repopulate the city field --%>
City: <input type='text' name='city' value='${param.city}' />
<br/><br/>
<%-- Repopulate the province field --%>
Province: <input type='text' name='province' value='${param.province}' />
<br/><br/>
<%-- Repopulate the postalCode field --%>
Postal code: <input type='text' name='postalCode' value='${param.postalCode}' />
<br/><br/>
<input type='Submit' value='Continue...' />
</form>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -