bbsvet.jsp~3~

来自「JBuilder 2006 +SQL Server2000 +JavaBean+」· JSP~3~ 代码 · 共 26 行

JSP~3~
26
字号
<%@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 + =
减小字号Ctrl + -
显示快捷键?