MySMSSendTo.aspx.cs
上传用户:simon2hong
上传日期:2021-11-18
资源大小:16746k
文件大小:2k
源码类别:

OA系统

开发平台:

C#

  1. using System;
  2. using System.Data;
  3. using System.Configuration;
  4. using System.Collections;
  5. using System.Web;
  6. using System.Web.Security;
  7. using System.Web.UI;
  8. using System.Web.UI.WebControls;
  9. using System.Web.UI.WebControls.WebParts;
  10. using System.Web.UI.HtmlControls;
  11. public partial class SMS_MySMSSendTo : System.Web.UI.Page
  12. {
  13.     Model.Sms MS = new Model.Sms();
  14.     BLL.Sms BS = new BLL.Sms();
  15.     protected void Page_Load(object sender, EventArgs e)
  16.     {
  17.         if (Request.QueryString["id"] != null)
  18.         {
  19.             InfoNameId_TextBox.Text = Server.UrlDecode(Request.QueryString["id"].ToString());
  20.             Info_TextBox.Text = "麻烦您抽时间帮我办理下!";
  21.         }
  22.     }
  23.     protected void Button1_Click(object sender, EventArgs e)
  24.     {
  25.         try
  26.         {
  27.             if (InfoNameId_TextBox.Text == "")
  28.             {
  29.                 throw new Exception("接收者不能为空!");
  30.             }
  31.             if (Info_TextBox.Text == "")
  32.             {
  33.                 throw new Exception("信息不能为空!");
  34.             }
  35.             SMSSend.Send(SessionInclude.SessionId, InfoNameId_TextBox.Text.Replace(",", ""), Info_TextBox.Text, "SMS/SMSManager.aspx", SMSType.普通发送);
  36.             if (CheckBox1.Checked)
  37.             {
  38.                 SMSSend.Send(SessionInclude.SessionId, InfoNameId_TextBox.Text.Replace(",", ""), Info_TextBox.Text, "SMS/SMSManager.aspx", SMSType.短信发送);
  39.             }
  40.            
  41.             MessageBox.Show("发送成功!", "SMSManager.aspx");
  42.         }
  43.         catch (Exception exp)
  44.         {
  45.             MessageBox.Show(exp.Message);
  46.         }
  47.     }
  48. }