📄 list.jsp
字号:
<%@ page contentType="text/html; charset=gb2312" pageEncoding="gb2312"%>
<%@ page language="java" import="java.util.*"%>
<%@taglib uri="http://struts.apache.org/tags-html" prefix="html"%>
<%@taglib uri="http://java.sun.com/jsp/jstl/core" prefix="c"%>
<%@page isELIgnored="false"%>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>ExamTest</title>
</head>
<body bgcolor="#ccddee"
background="${pageContext.request.contextPath}/image/background.jpg"
link="#000066" vlink="#0066FF" alink="#99FF00">
<div align="center">
<div align="center">
<h3>
测试题目类型列表
</h3>
</div>
<form name="form" method="post"
action="${pageContext.request.contextPath}/altertype.do?id=1">
<table width="91%" border="0" align="center">
<tr bgcolor="#ccddee" class="pp">
<td width="14%" height="6">
<span class="pp"> 测试题目 </span>
</td>
<td>
<span class="yellow">题目分值</span>
</td>
<td bgcolor="#ccddee">
<span class="yellow">题目个数 </span>
</td>
<td bgcolor="#ccddee">
<span class="yellow">修改</span>
</td>
<td bgcolor="#ccddee">
<span class="yellow">编辑</span>
</td>
</tr>
<c:forEach items="${Type}" var="type">
<tr bgcolor="#ccddee" class="pp">
<td width="14%" height="6">
<span class="pp"> <a
href="${pageContext.request.contextPath}/userManagement/open.jsp"
name="typestyle" class="text_link">${type.typestyle}</a> </span>
</td>
<td>
<span class="yellow"><input name="typevalue" type="text"
size="16" value="${type.typevalue}">
</span>
</td>
<td bgcolor="#ccddee">
<span class="yellow"><input name="typenumber" type="text"
size="16" value="${type.typenumber}"> </span>
</td>
<td bgcolor="#ccddee">
<span class="yellow"><a href="${pageContext.request.contextPath}/altertype.do?id=${type.typeid}">修改</a ></span>
</td>
<td bgcolor="#ccddee">
<span class="yellow"><input type="submit" name="" value="编辑" size="12"></span>
</td>
</tr>
</c:forEach>
</table>
</form>
</body>
</html>
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -