sms_list.aspx

来自「这是个短信群发的程序」· ASPX 代码 · 共 46 行

ASPX
46
字号
<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sms_List.aspx.cs" Inherits="SMS_Sms_List" %>

<html xmlns="http://www.w3.org/1999/xhtml" >
<head runat="server">
    <title>无标题页</title>
    <link href="CSS/style.css" rel="stylesheet" type="text/css"/>
</head>
<body>
    <form id="form1" runat="server">
    <div>
    <table width="100%" border="0" cellspacing="0" cellpadding="5">
  <tr>
    <td height="20" colspan="2" align="center" id="title" runat=server style="font-weight:bold"></td>
  </tr>
  <tr >
  <td  id="send"  runat=server align=center><A href="Sms_List.aspx">普通短信发送记录</A>&nbsp;&nbsp;&nbsp;&nbsp;<a href="Sms_GroupSend.aspx">群发短信历史记录</a></td>
  </tr>

</table>
    </div>
        <asp:GridView ID="GridView1" runat="server"  AllowPaging="True" CellPadding="4" ForeColor="#333333" GridLines="None"  OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="15" AutoGenerateColumns="False" Width="100%">
        
        <Columns>
        
        <asp:BoundField DataField="id" HeaderText="编号"  ItemStyle-Width="10%"/>
        <asp:BoundField DataField="sender" HeaderText="发送者号码"  ItemStyle-Width="15%"/>
        <asp:BoundField DataField="receiver" HeaderText="接收者号码" ItemStyle-Width="15%"/>
        <asp:BoundField DataField="memo" HeaderText="短信内容" />
        <asp:BoundField DataField="flag" HeaderText="状态" ItemStyle-Width="8%"/>
     
        <asp:BoundField DataField="happen_time" HeaderText="发生时间" ItemStyle-Width="20%"/>
        
        </Columns>
        
            <FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" />
            <RowStyle BackColor="#EFF3FB"  HorizontalAlign="left"/>
            <EditRowStyle BackColor="#2461BF" />
            <SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" />
            <PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" />
            <HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White"  Font-Size=14px HorizontalAlign="Left"/>
            <AlternatingRowStyle BackColor="White" />
        </asp:GridView>
    </form>
</body>
</html>

⌨️ 快捷键说明

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