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

📄 index.jsp

📁 jsp实现网络教育系统
💻 JSP
字号:
<%@ taglib prefix="mt" uri="/WEB-INF/software.xml" %>
<%@ page contentType="text/html; charset=GB2312" %>
<html>
<head>
<title>软件管理</title>
<meta http-equiv="Content-Type" content="text/html; charset=gb2312">
<link rel="stylesheet" href="hover.css" type="text/css">
</head>

<body bgcolor="#FFFFFF" text="#000000">
<table border="0" cellspacing="1" cellpadding="2">
  <tr> 
    <th>名称</th>
    <th>说明</th>
    <th colspan="2">操作</th>
  </tr>
  <mt:GroupList>
  <tr> 
    <td><%= groupName %></td>
    <td><%= groupDescription %></td>
    <td><a href="group.jsp?groupID=<%= groupID %>">浏览</a></td>
    <td><a href="delgroup.jsp?groupID=<%= groupID %>">删除</a></td>
  </tr>
  </mt:GroupList>
</table>
<ul>
  <li>添加软件组
    <form name="form1" method="post" action="newgroup.jsp">
      * 组名称:
      <input type="text" name="groupName" size="25">
      <br>
      说明:
      <textarea name="groupDescription" cols="60" rows="5"></textarea>
      <br>
      <input type="submit" name="Submit" value="  添    加  ">
    </form>
  </li>
</ul>
</body>
</html>

⌨️ 快捷键说明

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