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

1<%@ Page Language="C#" AutoEventWireup="true" CodeFile="Sms_GroupSend.aspx.cs" Inherits="SMS_Sms_GroupSend" %> 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><td align=center> 13
<b>群发短信历史记录</b> 14
</td></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
</table> 19
<asp:GridView ID="GridView1" runat="server" AllowPaging="True" CellPadding="4" ForeColor="#333333" GridLines="None" OnPageIndexChanging="GridView1_PageIndexChanging" PageSize="12" AutoGenerateColumns="False" Width="100%"> 20
21
<Columns> 22
23
<asp:BoundField DataField="id" HeaderText="编号" ItemStyle-Width="8%" /> 24
<asp:BoundField DataField="sms_memo" HeaderText="短信内容" ItemStyle-Width="50%"/> 25
<asp:BoundField DataField="sms_count" HeaderText="合计(条)" ItemStyle-Width="8%"/> 26
<asp:BoundField DataField="successCount" HeaderText="成功(条)" ItemStyle-Width="8%"/> 27
<asp:BoundField DataField="failcount" HeaderText="失败(条)" ItemStyle-Width="8%"/> 28
29
<asp:BoundField DataField="time" HeaderText="操作时间" ItemStyle-Width="20%"/> 30
31
</Columns> 32
<FooterStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 33
<RowStyle BackColor="#EFF3FB" HorizontalAlign=Center/> 34
<EditRowStyle BackColor="#2461BF" /> 35
<SelectedRowStyle BackColor="#D1DDF1" Font-Bold="True" ForeColor="#333333" /> 36
<PagerStyle BackColor="#2461BF" ForeColor="White" HorizontalAlign="Center" /> 37
<HeaderStyle BackColor="#507CD1" Font-Bold="True" ForeColor="White" /> 38
<AlternatingRowStyle BackColor="White" /> 39
</asp:GridView> 40
</div> 41
</form> 42
</body> 43
</html> 44



