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

📄 bbsvet.jsp~3~

📁 JBuilder 2006 +SQL Server2000 +JavaBean+JSP开发的宠物医院管理系统
💻 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 + -