shownotetype.jsp
来自「java带进度条上传尽量不要让站长把时间都花费在为您修正说明上」· JSP 代码 · 共 49 行
JSP
49 行
<%@ page language="java" pageEncoding="gb2312"%>
<%@ taglib uri="http://struts.apache.org/tags-bean" prefix="bean" %>
<%@ taglib uri="http://struts.apache.org/tags-html" prefix="html" %>
<%@ taglib uri="http://struts.apache.org/tags-logic" prefix="logic" %>
<%@ taglib uri="http://struts.apache.org/tags-tiles" prefix="tiles" %>
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html:html lang="true">
<head>
<html:base />
<title>showNotetype.jsp</title>
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="expires" content="0">
<meta http-equiv="keywords" content="keyword1,keyword2,keyword3">
<meta http-equiv="description" content="This is my page">
<!--
<link rel="stylesheet" type="text/css" href="styles.css">
-->
</head>
<body>
<logic:present name="listvo">
<table width="80%" align="center">
<tr><th>id</th><th>类型名字</th><th>操作</th></tr>
<logic:notEmpty name="listvo">
<logic:iterate id="vo" name="listvo" type="com.jmwl.vo.NoteTypeVO">
<tr align="center"><td><%= vo.getNoteTypeid() %><td> <%= vo.getNotename() %> </td><td>
<a href="/javablog/notetype.do?method=delNoteType¬etypeid=${vo.noteTypeid }">删除</a>
<a href="/javablog/notetype.do?method=toUpdateNewsType¬etypeid=${vo.noteTypeid }">修改</a>
</td></tr>
</logic:iterate>
</logic:notEmpty>
<logic:empty name="listvo">
<tr><td>对不起,你还没有建立日志类型</td></tr>
</logic:empty>
</table>
</logic:present>
<logic:notPresent name="listvo">
<jsp:forward page="/notetype.do?method=findAllNoteType"></jsp:forward>
</logic:notPresent>
</body>
</html:html>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?