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

📄 find_lesson2_in_all.jsp

📁 jsp+servlet+javabean实现的学校教务管理系统 (1)系统测试环境: Windows xp sp2 + myEclipse5.5 + Tomcat6.0 + SQLServer2
💻 JSP
字号:
<%@ page language="java" contentType="text/html; charset=gb2312"
	pageEncoding="gb2312"%>
<%@ taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>

<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<title>Insert title here</title>
<style type="text/css"><!--
a			{ text-decoration: none; color: #ffffff }
a:hover			{ text-decoration: underline }
body			{ scrollbar-base-color: #000000; scrollbar-arrow-color: #000000; font-size: 12px; background-color: #000000 }
table			{ font: 12px Tahoma, Verdana; color: #ffffff}
input,select,textarea	{ font: 11px Tahoma, Verdana; color: #ffffff; font-weight: normal; background-color: #F8F8F8 }
form			{ margin: 0; padding: 0}
select			{ font: 11px Arial, Tahoma; color: #000000; font-weight: normal; background-color: #F8F8F8 }
.nav			{ font: 12px Tahoma, Verdana; color: #000000; font-weight: bold }
.nav a			{ color: #000000 }
.header			{ font: 11px Tahoma, Verdana; color: #ffffff; font-weight: bold; background-color: #000000 }
.header a		{ color: #FFFFFF }
.category		{ font: 11px Arial, Tahoma; color: #000000; background-color: #EFEFEF }
.tableborder		{ background: #000000; border: 1px solid #FFFFFF } 
.singleborder		{ font-size: 0px; line-height: 1px; padding: 0px; background-color: #F8F8F8 }
.smalltxt		{ font: 11px Arial, Tahoma }
.outertxt		{ font: 12px Tahoma, Verdana; color: #ffffff }
.outertxt a		{ color: #ffffff }
.bold			{ font-weight: bold }
.altbg1			{ background: #F8F8F8 }
.altbg2			{ background: #FFFFFF }
.maintable		{ width: 98%; background-color: #FFFFFF }
--></style>
</head>
<body >
<div align=center>
<table cellpadding="1" border="1" width="99%" align="center"
	bordercolor="black" cellspacing="1">
	<tr class="category" align="center" bgcolor="COCOCO">
		<th width="25%">系统号</th>
		<th width="25%">选修课程名</th>
		<th width="25%">预修课程名</th>
		
		

	</tr>

	<c:forEach var="list" items="${mylist}">
		<tr align="center" font=12px 宋体>
			<c:forEach var="temp" items="${list}" begin="0" end="0">
				<td><a
					href="ChangeLesson2Servlet?action=findonelesson2info&L2_ID=${temp}">${temp}</a></td>
			</c:forEach>

			<c:forEach var="temp" items="${list}" begin="1">
				<td>${temp}</td>
			</c:forEach>
		</tr>
	</c:forEach>
	</div>
</body>
</html>

⌨️ 快捷键说明

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