温馨提示:代码在线浏览功能只能做为源码浏览参考,不能展示项目的全部,如果想更进一步了解该代码请下载:星幻短信群发平台Web源码
当前文件路径:XingHuanWebSms/Sms_List.aspx

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sms_List.aspx.cs" Inherits="SMS_Sms_List" %> 2
3
<html xmlns="http://www.w3.org/1999/xhtml" > 4
<head runat="server"> 5
<title>无标题页</title> 6
<link href="CSS/style.css" rel="stylesheet" type="text/css"/> 7
</head> 8
<body> 9
<form id="form1" runat="server"> 10
<div> 11
<table width="100%" border="0" cellspacing="0" cellpadding="5"> 12
<tr> 13
<td height="20" colspan="2" align="center" id="title" runat=server style="font-weight:bold"></td> 14
</tr> 15
<tr > 16
<td id="send" runat=server align=center><A href="Sms_List.aspx">普通短信发送记录</A> <a href="Sms_GroupSend.aspx">群发短信历史记录</a></td> 17
</tr> 18
19
</table> 20
</div> 21
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" CellPadding="4" ForeColor="#333333" GridLines="None" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="15" AutoGenerateColumns="False" Width="100%"> 22
23
<Columns> 24
25
<asp:BoundField DataField="id" HeaderText="编号" ItemStyle-Width="10%"/> 26
<asp:BoundField DataField="sender" HeaderText="发送者号码" ItemStyle-Width="15%"/> 27
<asp:BoundField DataField="receiver" HeaderText="接收者号码" ItemStyle-Width="15%"/> 28
<asp:BoundField DataField="memo" HeaderText="短信内容" /> 29
<asp:BoundField DataField="flag" HeaderText="状态" ItemStyle-Width="8%"/> 30
31
<asp:BoundField DataField="happen_time" HeaderText="发生时间" ItemStyle-Width="20%"/> 32
33
</Columns> 34
35
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 36
<RowStyle BackColor="#EFF3FB" HorizontalAlign="left"/> 37
<EditRowStyle BackColor="#2461BF" /> 38
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 39
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 40
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" Font-Size=14px HorizontalAlign="Left"/> 41
<AlternatingRowStyle BackColor="White" /> 42
</asp:GridView> 43
</form> 44
</body> 45
</html> 46



