messagelist.aspx
上传用户:szraylite
上传日期:2018-06-06
资源大小:11546k
文件大小:2k
源码类别:

软件测试

开发平台:

Java

  1. <%@ Page Language="C#" AutoEventWireup="true" CodeFile="messagelist.aspx.cs" Inherits="admin_messagelist" %>
  2. <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
  3. <html xmlns="http://www.w3.org/1999/xhtml" >
  4. <head runat="server">
  5.     <title>留言信息</title>
  6. </head>
  7. <body>
  8.     <div align=left style="height:1px; width: 600px; text-align: center;">
  9.         <br />
  10.         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  11.         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;
  12.         &nbsp; &nbsp; &nbsp; &nbsp; &nbsp;留言管理</div>
  13.     <form id="form1" runat="server">
  14.     <div align=center>
  15.         <asp:GridView ID="GV" runat="server" Width="478px" CellPadding="4" GridLines="Horizontal" PageSize="2" AllowPaging="True" AutoGenerateColumns="False" Font-Size="Smaller" Height="1px"
  16.          OnPageIndexChanging="GV_PageIndexChanging" BackColor="White" BorderColor="#336666" BorderStyle="Double" BorderWidth="3px" OnRowCommand="GV_RowCommand" OnRowDeleting="GV_RowDeleting">
  17.             <FooterStyle BackColor="White" ForeColor="#333333" />
  18.             <Columns>
  19.                 <asp:BoundField DataField="id" HeaderText="序号" />
  20.                 <asp:BoundField DataField="guest_name" HeaderText="用户" />
  21.                 <asp:BoundField DataField="booktime" HeaderText="留言时间" />
  22.                 <asp:BoundField DataField="content" HeaderText="内容" />
  23.                 <asp:CommandField ShowDeleteButton="True" HeaderText="删除" />
  24.                 <asp:HyperLinkField DataNavigateUrlFields="id" DataNavigateUrlFormatString="reply.aspx?id={0}"
  25.                     HeaderText="回复留言" Text="回复留言" />
  26.             </Columns>
  27.             <RowStyle BackColor="White" ForeColor="#333333" />
  28.             <SelectedRowStyle BackColor="#339966" Font-Bold="True" ForeColor="White" />
  29.             <PagerStyle BackColor="#336666" ForeColor="White" HorizontalAlign="Center" />
  30.             <HeaderStyle BackColor="#336666" Font-Bold="True" ForeColor="White" />
  31.         </asp:GridView>
  32.         &nbsp;</div>
  33.     </form>
  34. </body>
  35. </html>