index.jsp

来自「java+jsp华源网校+西部软件jsp版」· JSP 代码 · 共 41 行

JSP
41
字号
<%@ 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 + =
减小字号Ctrl + -
显示快捷键?