国产探花免费观看_亚洲丰满少妇自慰呻吟_97日韩有码在线_资源在线日韩欧美_一区二区精品毛片,辰东完美世界有声小说,欢乐颂第一季,yy玄幻小说排行榜完本

首頁 > 編程 > ASP > 正文

asp+的論壇列表程序---頁面部分

2019-11-18 21:53:53
字體:
來源:轉載
供稿:網友
asp+的論壇列表程序---頁面部分    

--------------------------------------------------------------------------------
【bigeagle】 于 2000-11-13 15:38:10 加貼在 Joy ASP ↑:

<%@ Page Inherits="Forum" Src="source/forum.cs" Trace="false"%>
<%@ Register TagPRefix="Acme" TagName="Navigator" Src="acme/navigator.aspc" %>

<!--#include file="include/publicproc.inc"-->

<%ShowHead("論壇首頁");%>         

<form runat=server>

<table width=720 align=center border=0>
   <tr>
       <td width=30 align=left>
           <img ID="imgNew" src="images/off.gif">
       </td>
       <td width=400>(<asp:Label ID="lblTopicCounts1" runat=server/>)
          <asp:Label ID = "lblForumName" runat=server/>
          <br>版主:<img id="imgOICQ" width=20 height=20 runat=server/>
          <asp:HyperLink ID="linkMaster" runat=server/>
       </td>
       <td>
<table width=100% border=0 align=left>
     <tr>
         <td align=left>
              <img src = 'images/open.gif'>
                  <a href='default.aspx'>
                    <span class=bigtitle>
                       eMatters Board
                    </span></a>
             <br><img src='images/tline.gif'>
              <img src = 'images/closed.gif'>
             <asp:Label id="lblForumName1" class=title runat=server/>
      </td></tr>
</table>
       </td>
   </tr>
</table>
<table width=720 align=center border=0>
   <tr>
       <td  align=right>
          <asp:imagebutton id="btnPostNew" src = 'images/post.gif' border=0 runat=server/>
       </td>
   </tr>
</table>
<Acme:Navigator runat=server/>
<br><br>

<table width=720 border=0 cellspacing=1 cellpadding=4 align=center>
     <tr bgcolor=#ffffff>
         <td width=600>
            共<asp:Label id="lblTopicCounts" runat=server/>個主題,
            每頁顯示<asp:Label ID="lblPerPage" runat=server/>條。
            目前在頁:<asp:Label id="lblPosition" runat=server/>
         </td>
         <td width=30 align=center>
            <asp:HyperLink id="linkFirstPage" runat=server>
              首頁
            </asp:HyperLink>  
         </td>
         <td width=30 align=center>
            <asp:HyperLink id="linkPrevPage" runat=server>
              前頁
            </asp:HyperLink>  
         <td width=30 align=center>
            <asp:HyperLink id="linkNextPage" runat=server>
              后頁
            </asp:HyperLink>  
         </td>
         <td width=30 align=center>
            <asp:HyperLink id="linkLastPage" runat=server>
              末頁
            </asp:HyperLink>  
         </td>
     </tr>
</table>
<center>
  <asp:table id="tblTopic" width=720 cellpadding=4 cellspacing=1 bgcolor=#000000 align=center runat=server>
      <asp:TableRow bgcolor=#ffffff valign=bottom>
        <asp:TableCell width=30  runat=server>
            &nbsp;
        </asp:TableCell>
        <asp:TableCell width=30 runat=server>
            &nbsp;
        </asp:TableCell>
        <asp:TableCell class=title width=350 runat=server>
            主題
        </asp:TableCell>
        <asp:TableCell width=60 class=title runat=server>
            作者
        </asp:TableCell>
        <asp:TableCell width=40 class=title runat=server>
            回復
        </asp:TableCell>
        <asp:TableCell class=title runat=server>
            最后回復時間
        </asp:TableCell>
      </asp:TableRow>

  </asp:table>


</center>

<table width=720 border=0 cellspacing=1 cellpadding=4  align=center>
     <tr bgcolor=#ffffff>
         <td width=600>
           &nbsp;
         </TD>
         <td width=30 align=center>
            <asp:HyperLink id="linkFirstPage1" runat=server>
              首頁
            </asp:HyperLink>  
         </td>
         <td width=30 align=center>
            <asp:HyperLink id="linkPrevPage1" runat=server>
              前頁
            </asp:HyperLink>  
         <td width=30 align=center>
            <asp:HyperLink id="linkNextPage1" runat=server>
              后頁
            </asp:HyperLink>  
         </td>
         <td width=30 align=center>
            <asp:HyperLink id="linkLastPage1" runat=server>
              末頁
            </asp:HyperLink>  
         </td>
     </tr>
</table>
<br><br>



<table width=720 align=center border=0>
    <tr>
       <td align=right>
          <asp:DropDownList id="selChangeForum" runat=server/>
       </td>
   </tr>
</table>


</form>
<table width=720 border=0 cellpadding=4 align=center>
     <tr valign=bottom>
         <td width=200 align=left>
            <img src='images/closedb.gif'>
            自從您上次訪問后有新貼子。
         </td>
         <td align=left width=150>
              &nbsp;&nbsp;(<img src='images/hotclosedb.gif'>
            回復超過10張。)
         </td>
         <td>&nbsp;</td>
     </tr>
     <tr valign=bottom>
         <td  align=left>
            <img src='images/closed.gif'>
            自從您上次訪問后沒有新貼子。
         </td>
         <td align=left>
           (<img src='images/hotclosed.gif'>
            回復超過5張。)
         </td>
         <td>&nbsp;</td>
     </tr>
     <tr>
         <td colspan=3 align=left>
            <img src='images/lock.gif'>
            關閉的主題 - 不接受回復。
         </td>
    </tr>
         <td colspan=3 align=center>
          <asp:imagebutton id="btnPostNew1" src = 'images/post.gif' border=0 runat=server/>
           </a>
         </td>
    </tr>
</table><br><br>

<%ShowBottom() ;%>



發表評論 共有條評論
用戶名: 密碼:
驗證碼: 匿名發表

圖片精選

主站蜘蛛池模板: 广东省| 靖远县| 措美县| 临颍县| 哈巴河县| 三原县| 庐江县| 盱眙县| 大方县| 当雄县| 黎平县| 凤庆县| 沙洋县| 泰安市| 运城市| 高尔夫| 衡阳县| 星座| 确山县| 启东市| 三台县| 乌拉特后旗| 鹤壁市| 馆陶县| 宜春市| 麻城市| 濮阳市| 宁陵县| 宁波市| 江源县| 集安市| 集贤县| 绍兴市| 卢龙县| 丹棱县| 峨边| 兴和县| 长垣县| 汪清县| 吴江市| 中卫市|