forum_postgrid.aspx
上传用户:wenllgg125
上传日期:2020-04-09
资源大小:7277k
文件大小:2k
- <%@ Page language="c#" Inherits="Discuz.Web.Admin.postgrid" Codebehind="forum_postgrid.aspx.cs" %>
- <%@ Register TagPrefix="cc1" Namespace="Discuz.Control" Assembly="Discuz.Control" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html>
- <head>
- <title>postgrid</title>
- <link href="../styles/datagrid.css" type="text/css" rel="stylesheet" />
- <link href="../styles/dntmanager.css" type="text/css" rel="stylesheet" />
- <script type="text/javascript" src="../js/common.js"></script>
- <meta http-equiv="X-UA-Compatible" content="IE=7" />
- </head>
- <body>
- <form id="Form1" method="post" runat="server">
- <cc1:datagrid id="DataGrid1" runat="server" OnPageIndexChanged="DataGrid_PageIndexChanged" >
- <Columns>
- <asp:BoundColumn DataField="pid" SortExpression="pid" HeaderText="帖子ID" Visible="false" ></asp:BoundColumn>
- <asp:BoundColumn DataField="title" HeaderText="显示顺序"></asp:BoundColumn>
- <asp:TemplateColumn HeaderText="标题">
- <ItemTemplate>
- <a href="../../showtopic.aspx?topicid=<%=Request["tid"]%>" target="_blank"><%# DataBinder.Eval(Container, "DataItem.title").ToString()%></a>
- </ItemTemplate>
- </asp:TemplateColumn>
- <asp:BoundColumn DataField="postdatetime" HeaderText="发布日期"></asp:BoundColumn>
- <asp:BoundColumn DataField="poster" HeaderText="发帖人" ></asp:BoundColumn>
- <asp:TemplateColumn HeaderText="标题">
- <ItemTemplate>
- <%# Invisible(DataBinder.Eval(Container, "DataItem.invisible").ToString())%>
- </ItemTemplate>
- </asp:TemplateColumn>
- <asp:BoundColumn DataField="attachment" HeaderText="附件数"></asp:BoundColumn>
- <asp:BoundColumn DataField="rate" HeaderText="评分分数"></asp:BoundColumn>
- <asp:BoundColumn DataField="ratetimes" HeaderText="评分次数"></asp:BoundColumn>
- </Columns>
- </cc1:datagrid>
- <br />
- </form>
- <%=footer%>
- </body>
- </html>