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

📄 searchmyfavorite.jsp

📁 LyBBS基于Struts1.3/Ajax的架构
💻 JSP
字号:
<%@ page contentType="text/html; charset=GBK" %>
<%@ include file="common/include/taglibs.jsp" %>
<html:html>
<head>
<title><lybbs:web key="forumName"/></title>
<link rel="shortcut icon" href="favicon.ico" type="image/x-icon">
<link rel="bookmark" href="favicon.ico" type="image/x-icon">
<%@ include file="common/include/header.jsp" %>
<script language="JavaScript">
  function CheckAll(form) {
     for(var i=0;i<form.elements.length;i++) {
       var e = form.elements[i];
       e.checked = true;
     }
  }
  function FanAll(form) {
    for(var i=0;i<form.elements.length;i++) {
      var e = form.elements[i];
      if (e.checked == true) {
        e.checked = false;
      }
      else {
        e.checked = true;
      }
    }
  }
</script>
</head>
<body topmargin=0 leftmargin=0>
<TABLE class=tableCommonStyle cellSpacing=1 cellPadding=3 border=0 align=center>
 <TR>
  <TD height=4 class=bgStyle></TD>
 </TR>
 <TR>
  <TD class=noBgStyle>
    <lybbs:typeAdTag/>
  </TD>
 </TR>
 <TR>
  <TD height=4 class=bgStyle></TD>
 </TR>
 <tr>
  <td class=menuStyle height=22>
    <table width=100% cellpadding=0 cellspacing=0 border=0>
    <tr>
    <td align=left>
    <lybbs:typeUserHeaderTag forumID="0"/>
    </td>
    <td align=right>
      <lybbs:web key="returnHomeLink"/>
    </td>
    </tr>
    </table>
  </td>
 </tr>
</table>
<br>
<table class=tableCommonStyle cellpadding=3 cellspacing=1 border=0 align=center>
 <tr>
  <td class=navStyle vAlign=center height=25>
    <img src="lybbs/images/forum_nav.gif" width="9" height="9" align="absMiddle"> <a href="bbs_index.do"><lybbs:web key="forumName"/></a> <bean:message key="common.lybbs.arrow"/> <bean:message key="jsp.userheader.controlpanel.searchmyfavorite"/>
  </td>
 </tr>
</table>
<br>
<table class=tableCommonStyle cellpadding=6 cellspacing=1 border=0 align=center>
  <form action="bbs_userControlPanel.do" method="post">
  <input type=hidden name="checkAction" value="yes">
  <input type=hidden name="action" value="<bean:write name="action"/>">
  <tr>
    <td class=catStyle align=center>
      <b><bean:message key="common.lybbs.title"/></b>
    </td>
    <td class=catStyle width=20% align=center>
      <b><bean:message key="common.lybbs.author"/></b>
    </td>
    <td class=catStyle width=20% align=center>
      <b><bean:message key="common.lybbs.date"/></b>
    </td>
    <td class=catStyle width=5% align=center>
      <b><bean:message key="common.lybbs.select"/></b>
    </td>
  </tr>
  <logic:present name="topicListBean" scope="request">
  <logic:iterate id="element" name="topicListBean">
  <tr>
    <td class=forumColorTwo>
      <a href="bbs_topic.do?forumID=<bean:write name="element" property="forumID"/>&postID=<bean:write name="element" property="postID"/>"><bean:write name="element" property="title"/></a>
    </td>
    <td class=forumColorTwo>
      <bean:write name="element" property="author"/>
    </td>
    <td class=forumColorTwo>
      <bean:write name="element" property="postAt"/>
    </td>
    <td class=forumColorTwo>
      <input type=checkbox name="postID" value="<bean:write name="element" property="postID"/>">
    </td>
  </tr>
  </logic:iterate>
  </logic:present>
  <tr>
    <td class=forumColorOne colspan=2>
      <bean:write name="pageUtils" property="pageInfo" filter="false"/>
    </td>
    <td class=forumColorOne colspan=2>
      <input type="button" name="chkall" value="<bean:message key="common.lybbs.selectall"/>" onclick="CheckAll(this.form)">
      <input type="button" name="clear" value="<bean:message key="common.lybbs.fanall"/>" onclick="FanAll(this.form)">
      <input type="reset" name="reset" value="<bean:message key="common.lybbs.reset"/>">
      <input type=submit value="<bean:message key="common.lybbs.delete"/>">
    </td>
  </tr>
  </form>
</table>
<br>
<lybbs:web key="foot"/>
</body>
</html:html>

⌨️ 快捷键说明

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