MsgSend.aspx.cs
上传用户:cha0314
上传日期:2014-03-02
资源大小:12522k
文件大小:5k
源码类别:

C#编程

开发平台:

C#

  1. using System;
  2. using System.Collections;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Web;
  7. using System.Web.SessionState;
  8. using System.Web.UI;
  9. using System.Web.UI.WebControls;
  10. using System.Web.UI.HtmlControls;
  11. using System.Data.SqlClient;
  12. using UDS.Components;
  13. namespace UDS.SubModule.SM
  14. {
  15. /// <summary>
  16. /// MsgSend 的摘要说明。
  17. /// </summary>
  18. public class MsgSend : System.Web.UI.Page
  19. {
  20. protected System.Web.UI.WebControls.Button btnSend;
  21. protected System.Web.UI.WebControls.TextBox txtContent;
  22. protected System.Web.UI.WebControls.Label lblContent;
  23. public string SendTo="",MobileSendTo="",SendToRealName="",MobileSendToRN="",AdditionalNo="",Type="";
  24. protected System.Web.UI.WebControls.Label lblLReceiver;
  25. protected System.Web.UI.WebControls.Label lblAdditionalNo;
  26. protected System.Web.UI.WebControls.Label lblRemind;
  27. protected System.Web.UI.WebControls.Button btnReturn;
  28. protected System.Web.UI.WebControls.Label lblShortCut;
  29. protected System.Web.UI.WebControls.Label lblMReceiver;
  30. private void Page_Load(object sender, System.EventArgs e)
  31. {
  32. if(!Page.IsPostBack)
  33. {
  34. Type  = (Request.QueryString["Type"]!=null)?Request.QueryString["Type"].ToString():"1";
  35. if(Type=="1")
  36. {
  37. SendTo  = (Request.QueryString["SendTo"]!=null)?Request.QueryString["SendTo"].ToString()+",":"";
  38. SendToRealName  = (Request.QueryString["SendToRealName"]!=null)?Request.QueryString["SendToRealName"].ToString()+",":"";
  39. }
  40. if(Type=="2")
  41. {
  42. MobileSendTo  = (Request.QueryString["SendTo"]!=null)?Request.QueryString["SendTo"].ToString()+",":"";
  43. MobileSendToRN  = (Request.QueryString["SendToRealName"]!=null)?Request.QueryString["SendToRealName"].ToString()+",":"";
  44. }
  45. if(Type=="3")
  46. {
  47. AdditionalNo  = (Request.QueryString["SendTo"]!=null)?Request.QueryString["SendTo"].ToString()+",":"";
  48. }
  49. InitData();
  50. }
  51. }
  52. #region Web Form Designer generated code
  53. override protected void OnInit(EventArgs e)
  54. {
  55. //
  56. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  57. //
  58. InitializeComponent();
  59. base.OnInit(e);
  60. }
  61. /// <summary>
  62. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  63. /// 此方法的内容。
  64. /// </summary>
  65. private void InitializeComponent()
  66. {    
  67. this.btnSend.Click += new System.EventHandler(this.btnSend_Click);
  68. this.btnReturn.Click += new System.EventHandler(this.btnReturn_Click);
  69. this.Load += new System.EventHandler(this.Page_Load);
  70. }
  71. #endregion
  72. private void InitData()
  73. {
  74. }
  75. private string GetErrorMsg(int Code)
  76. {
  77. string Msg = "";
  78. switch (Code) {
  79. case 0:
  80. Msg = "成功";
  81. break;
  82. case -2:
  83. Msg = "消息超过长度";
  84. break;
  85. case -3:
  86. Msg = "手机号码不正确";
  87. break;
  88. case -4:
  89.     Msg = "发送阵列已满";
  90. break;
  91. case -8:
  92. Msg = "模块未打开";
  93. break;
  94. case -1:
  95. Msg = "串口未打开";
  96. break;
  97. default:
  98. Msg = "未知错误";
  99. break;
  100. }
  101. return Msg;
  102. }
  103. private void btnSend_Click(object sender, System.EventArgs e)
  104. {
  105. SMS sm = new SMS();
  106. string ErrorMsg = "";
  107. string Username   = Request.Cookies["Username"].Value.ToString();
  108. this.SendTo   = Request.Form["hdnTxtSendTo"].ToString();
  109. this.MobileSendTo   = Request.Form["hdnTxtMobileSendTo"].ToString();
  110. this.SendToRealName       = Request.Form["txtSendTo"].ToString();
  111. this.MobileSendToRN   = Request.Form["txtMobileSendTo"].ToString();
  112. this.AdditionalNo   = Request.Form["txtAdditionalNo"].ToString();
  113. if(SendTo!="") //发送短信至站内用户
  114. {
  115. int Code = sm.SendMsg(Username,SendTo,this.txtContent.Text,1,DateTime.Now,"",0,0);
  116. if(Code==1)
  117. {
  118. Response.Write("<script language=javascript>alert('站内短信发送成功');</script>");
  119. //Response.Redirect("MsgSend.aspx");
  120. }
  121. else
  122. {
  123. Response.Write("<script language=javascript>alert('站内短信发送失败');</script>");
  124. //Response.Redirect("MsgSend.aspx");
  125. }
  126. }
  127. if(MobileSendTo!="")//发送至站内手机用户
  128. {
  129. int Code = sm.SendMsg(Username,MobileSendTo,this.txtContent.Text,2,DateTime.Now,AdditionalNo,0,0);
  130. if(Code==1)
  131. {
  132. Response.Write("<script language=javascript>alert('站内手机短讯已经成功存储至消息阵列');</script>");
  133. //Response.Redirect("MsgSend.aspx");
  134. }
  135. else
  136. {
  137. //ErrorMsg = GetErrorMsg(Code);
  138. Response.Write("<script language=javascript>alert('手机短讯存储失败,请重试');</script>");
  139. //Response.Redirect("MsgSend.aspx");
  140. }
  141. }
  142. if(AdditionalNo!="")//发送至站外手机用户
  143. {
  144. int Code = sm.SendMsg(Username,MobileSendTo,this.txtContent.Text,3,DateTime.Now,AdditionalNo,0,0);
  145. if(Code==1)
  146. {
  147. Response.Write("<script language=javascript>alert('站外手机短讯已经成功存储至消息阵列');</script>");
  148. //Response.Redirect("MsgSend.aspx");
  149. }
  150. else
  151. {
  152. ErrorMsg = GetErrorMsg(Code);
  153. Response.Write("<script language=javascript>alert('手机短讯存储失败,请重试');</script>");
  154. //Response.Redirect("MsgSend.aspx");
  155. }
  156. }
  157. }
  158. private void btnReturn_Click(object sender, System.EventArgs e)
  159. {
  160. Response.Redirect("Index.aspx");
  161. }
  162. }
  163. }