viewstudent.jsp

来自「类似springside框架的一个组件式开发源码」· JSP 代码 · 共 36 行

JSP
36
字号
<%@ page contentType="text/html; charset=utf-8" %>
<%@ include file="/common/taglibs.jsp"%>
<?xml version="1.0" encoding="utf-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Insert title here</title>
<script type="text/javascript" src="${ctx}/javascript/global.js"></script>
<link rel="stylesheet" type="text/css" href="${ctx }/css/style.css" />
</head>
<body>
<div class="div_NavigationBar">
	<QuickOATag:ReturnBar name="查看学生" />
</div> 
<div class="div_ContentTable">
	<table width="100%" border="0" cellspacing="0" cellpadding="3" align="center">
		<tr>
			<td align="right" valign="top">姓名:</td>
			<td>
				${student.studentName }
			</td>
		</tr>
		<tr>
			<td align="right" valign="top">英语分数:</td>
			<td>
				${student.englishScore}
			</td>
		</tr>		
	</table>
</div>
<div  class="div_BottomBar">
	<input name="Submit" type="button" class="Button_bg80" value="返回" onclick="history.back()" />
</div>
</body>
</html>

⌨️ 快捷键说明

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