messagelist.aspx
资源名称:moban.rar [点击查看]
上传用户:szraylite
上传日期:2018-06-06
资源大小:11546k
文件大小:2k
源码类别:
软件测试
开发平台:
Java
- <%@ Page Language="C#" AutoEventWireup="true" CodeFile="messagelist.aspx.cs" Inherits="admin_messagelist" %>
- <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
- <html xmlns="http://www.w3.org/1999/xhtml" >
- <head runat="server">
- <title>留言信息</title>
- </head>
- <body>
- <div align=left style="height:1px; width: 600px; text-align: center;">
- <br />
-
-
- 留言管理</div>
- <form id="form1" runat="server">
- <div align=center>
- <asp:GridView ID="GV" runat="server" Width="478px" CellPadding="4" GridLines="Horizontal" PageSize="2" AllowPaging="True" AutoGenerateColumns="False" Font-Size="Smaller" Height="1px"
- OnPageIndexChanging="GV_PageIndexChanging" BackColor="White" BorderColor="#336666" BorderStyle="Double" BorderWidth="3px" OnRowCommand="GV_RowCommand" OnRowDeleting="GV_RowDeleting">
- <FooterStyle BackColor="White" ForeColor="#333333" />
- <Columns>
- <asp:BoundField DataField="id" HeaderText="序号" />
- <asp:BoundField DataField="guest_name" HeaderText="用户" />
- <asp:BoundField DataField="booktime" HeaderText="留言时间" />
- <asp:BoundField DataField="content" HeaderText="内容" />
- <asp:CommandField ShowDeleteButton="True" HeaderText="删除" />
- <asp:HyperLinkField DataNavigateUrlFields="id" DataNavigateUrlFormatString="reply.aspx?id={0}"
- HeaderText="回复留言" Text="回复留言" />
- </Columns>
- <RowStyle BackColor="White" ForeColor="#333333" />
- <SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" />
- <PagerStyle BackColor="#336666" ForeColor="White" HorizontalAlign="Center" />
- <HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" />
- </asp:GridView>
- </div>
- </form>
- </body>
- </html>