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

📄 jsp_list.jsp

📁 Jbuilder2006开发的严格按MVC设计模式组织开发过程
💻 JSP
字号:
<%@taglib uri="/WEB-INF/struts-logic.tld" prefix="logic"%>
<%@taglib uri="/WEB-INF/struts-bean.tld" prefix="bean"%>
<%@taglib uri="/WEB-INF/struts-html.tld" prefix="html"%>
<%@taglib uri="/WEB-INF/tops.tld" prefix="tops"%>
<%@page contentType="text/html; charset=GBK"%>
<!-- 检查用户是否已登陆-->
<html:html>
  <html:base/>
  <head>
  <tops:includeCSS fileName="style"/>
  <tops:includeCSS fileName="headstyle"/>
  <tops:includeJs fileName="common"/>
  <tops:includeJs fileName="Table"/>
  </head>
  <body>
  <html:form action="/actTopsJ2eeJspView.do" method="post">
    <input type="hidden" name="folderId" value="<bean:write name="folderId" scope="request"/>"/>
    <input type="hidden" name="method"/>
    <tops:showPageFunction pageFunction="页面对象管理" strongTextBeanName="curFolderName"/>
    <tops:toolbar>
      <tops:toolbutton  caption="新jsp页面" method="add"  image="page_add"/>
      <tops:toolbutton  caption="删除jsp页面" method="delete"  image="page_delete"/>
    </tops:toolbar>
    <table cellpadding="0" cellspacing="1" border="0" width="100%" id="PowerTable">
      <tr align="center">
        <td height="20" align="center" nowrap class="title" width="3%">        </td>
        <td width="5%" nowrap class="title">
          <tops:selectAllCheckBox/>
        </td>
        <td width="3%" nowrap class="title">序号</td>
        <td width="10%" nowrap class="title">页面名称</td>
        <td width="10%" nowrap class="title">文件名</td>
        <td width="30%" nowrap class="title">文件全名</td>
        <td width="30%" nowrap class="title">页秒代码</td>
      </tr>
      <logic:notEmpty name="objlist">
        <logic:iterate id="obj" name="objlist" indexId="index">
          <tr align="center">
            <td>            </td>
            <td height="20">
              <tops:selectCheckBox/>
            </td>
            <td><%=(index.intValue() + 1)%>            </td>
            <td>
              <tops:link action="actTopsJ2eeJspView" captionbeanproperty="page-obj-jspViewName" method="modify" argname1="id" argbeanproperty1="page-obj-id" caption="dd"/>
            </td>
            <td>
              <bean:write name="obj" property="fileName"/>
            </td>
            <td>
              <bean:write name="obj" property="fullFileName"/>
            </td>
            <td>
              <bean:write name="obj" property="jspViewCode"/>
            </td>
          </tr>
        </logic:iterate>
      </logic:notEmpty>
    </table>
  </html:form>
  </body>
</html:html>

⌨️ 快捷键说明

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