DotNet集中营|很有用的一段代码(短信群发)

【DotNet集中营|很有用的一段代码(短信群发)】public void Timesend()
{
int sendtype=1;
stringtime =DateTime.Now.ToLongTimeString();
string year=DateTime.Today.Year.ToString();
string month=DateTime.Today.Month.ToString();
string day=DateTime.Today.Day.ToString();
string datetime=year+"-"+month+"-"+day+" "+time;
DataSet ds =MyBMS.Access.Users.Outmsg(datetime);
int count=ds.Tables.Count;
if(count==0)
{
//时间点没有需要发送的信息
}
else
{
string status="";
for(int i=0; i{
string outid=ds.Tables[0].Rows[i][0].ToString();
string msgcontent=Server.UrlEncode(ds.Tables[0].Rows[i][3].ToString()); //循环获取140个字符,70个汉字
string Msgcontent=ds.Tables[0].Rows[i][3].ToString(); //取信息内容
string mobile=ds.Tables[0].Rows[i][2].ToString(); //取手机号码
string CmpyAccount =ds.Tables[0].Rows[i][1].ToString(); //获取数据库里UserID
string SubloginName=ds.Tables[0].Rows[i][6].ToString(); //帐号登陆名
string SpNumber=MyBMS.Access.Users.SelectSpNumber(CmpyAccount); //获取特服号
string link=MyBMS.Access.Users.Sendlink(SpNumber,mobile,msgcontent); //连接接口
ds.Tables[0].Rows[i].Delete();
RegisterStartupScript("key",""); //调用接口
status = MyBMS.Access.Users.Get_Http(link,10000); //读取返回状态
int flag;
try
{
flag= Convert.ToInt32(status.Substring(0,1)); //截取返回值的第一字符 0表示成功 1表示失败
}
catch
{
flag=1;
}
if(flag==0)//发送成功
{
MyBMS.Access.Users Msg=new Users(); //对象实例化
Msg.InsertSendMsg(CmpyAccount,SpNumber,mobile,Msgcontent,sendtype,flag,SubloginName); //插入成功记录
Msg.deleteoutmsg(outid); //删除OutMsgBox里的这条记录
}
else
{
flag=1; //发送失败
MyBMS.Access.Users Msg=new Users();
Msg.InsertSendMsg(CmpyAccount,SpNumber,mobile,Msgcontent,sendtype,flag,SubloginName); //插入失败记录
Msg.updatemsgCountadd(CmpyAccount); //发送失败 给用户可用余额增加1
Msg.deleteoutmsg(outid); //删除OutMsgBox里的这条记录
}
}
}
}
#region Web 窗体设计器生成的代码
override protected void OnInit(EventArgs e)
{
//
// CODEGEN: 该调用是 ASP.NET Web 窗体设计器所必需的。
//
InitializeComponent();
base.OnInit(e);
}
///
/// 设计器支持所需的方法 - 不要使用代码编辑器修改
/// 此方法的内容。
///
private void InitializeComponent()
{
this.timer1 = new System.Timers.Timer();
((System.ComponentModel.ISupportInitialize)(this.timer1)).BeginInit();
//
// timer1
//
this.timer1.Enabled = true;
this.timer1.Interval = 1000;
this.timer1.Elapsed += new System.Timers.ElapsedEventHandler(this.timer1_Elapsed);
this.Load += new System.EventHandler(this.Page_Load);
((System.ComponentModel.ISupportInitialize)(this.timer1)).EndInit();
}
#endregion
private void timer1_Elapsed(object sender, System.Timers.ElapsedEventArgs e)
{
this.Timesend();
}

    推荐阅读