📄 bbsvet.jsp~3~
字号:
<%@page contentType="text/html; charset=GB2312"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<html>
<head>
<title>bbsvet</title>
</head>
<body bgcolor="#ffffff">
<h1 align="center">给医生留言</h1>
<form method="post" action="/WebModule/bbsservlet" name="form1" >
<table align="center">
<tr>
<td>选择医生</td>
<td><select name="vetName">
<c:forEach items="${allvet}" var="vet">
<option value="${vet.VID}">${vet.vname}</option>
</c:forEach>
</select></td>
</tr>
<tr>
<td colspan="2" align="center"><input type="submit" value="提交" /></td>
</tr>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -