⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 modify.jsp

📁 达内JAVA培训-WEB课程部分项目源代码
💻 JSP
字号:
<%@taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<html>
<head>
	<title>modify</title>
</head>
<body>
	<h2 align="center">student modify</h2>
	<hr>
	<html:errors/>
	<html:form action="/struts/day2/modify">
	<table width="600" align="center" border="1" cellpadding="5" cellspacing="0">
		<tr>
			<td>username</td>
			<td><html:text name="studentForm" property="userName" maxlength="15" size="16"/></td>
			<td>password</td>
			<td><html:password name="studentForm" property="password" maxlength="20"/></td>
		</tr>
		<tr>
			<td>gender</td>
			<td>
				male<html:radio property="gender" name="studentForm" value="m"/>
				female<html:radio property="gender" name="studentForm" value="f"/>
			</td>
			<td>province</td>
			<td>
				<html:select name="studentForm" property="province">
					<html:optionsCollection name="studentForm" property="provinceList"/>
				</html:select>
			</td>
		</tr>
		<tr>
			<td>hobbies</td>
			<td colspan="3">
				sleeping<html:multibox name="studentForm" property="hobbies" value="s"/>
				eating<html:multibox name="studentForm" property="hobbies" value="e"/>
				playing<html:multibox name="studentForm" property="hobbies" value="y"/>
			</td>
		</tr>
		<tr>
			<td valign="top">introduction</td>
			<td colspan="3">
				<html:textarea cols="80" rows="6" name="studentForm" property="introduction"/>
			</td>
		</tr>
	</table>
	<br>
	<center>
		<input type="submit" value="modify">&nbsp;
		<input type="reset" value="reset">
	</center>
	</html:form>
</body>
</html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -