Index.aspx.cs
上传用户:xuming1973
上传日期:2014-02-27
资源大小:17511k
文件大小:5k
源码类别:

WEB源码(ASP,PHP,...)

开发平台:

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. /// Index 的摘要说明。
  17. /// </summary>
  18. public class Index : System.Web.UI.Page
  19. {
  20. protected System.Web.UI.WebControls.Button btnRead;
  21. protected System.Web.UI.WebControls.DataGrid dgMsgList;
  22. protected System.Web.UI.WebControls.Button btnDelete;
  23. private void Page_Load(object sender, System.EventArgs e)
  24. {
  25. string Username  = (Request.QueryString["Username"]!=null)?Request.QueryString["Username"].ToString():Request.Cookies["Username"].Value.ToString();
  26. string DispType  = (Request.QueryString["DispType"]!=null)?Request.QueryString["DispType"].ToString():"1";
  27. if(!Page.IsPostBack)
  28. {
  29. BindGrid(Username,DispType);
  30. Session["MsgDispType"] = DispType;
  31. this.btnDelete.Attributes ["onclick"]="javascript:return confirm('您确认要删除吗?');";
  32. }
  33. }
  34. #region 数据绑定至DataGrid
  35. /// <summary>
  36. /// 将用户的短讯记录显示在datagrid上
  37. /// </summary>
  38. protected void BindGrid(string Username,string DispType) 
  39. {   
  40. SMS sm = new SMS();
  41. SqlDataReader dr = null;
  42. if(DispType=="1") //我的所的接收
  43. {
  44. try
  45. {
  46. dr = sm.GetMyReceive(Username);
  47. dgMsgList.DataSource = UDS.Components.Tools.ConvertDataReaderToDataTable(dr).DefaultView;
  48. dgMsgList.DataBind();
  49. }
  50. catch
  51. {
  52. Server.Transfer("../Error.aspx");
  53. }
  54. }
  55. if(DispType=="2") //我所发送
  56. {
  57. try
  58. {
  59. dr = sm.GetMySent(Username);
  60. dgMsgList.DataSource = UDS.Components.Tools.ConvertDataReaderToDataTable(dr).DefaultView;
  61. dgMsgList.DataBind();
  62. }
  63. catch
  64. {
  65. Server.Transfer("../Error.aspx");
  66. }
  67. }
  68. switch (DispType)
  69. {
  70. case "1":
  71. dgMsgList.Columns[2].Visible = false; // 隐藏收件人
  72. break;
  73. case "2":
  74. dgMsgList.Columns[1].Visible = false; // 隐藏收件人
  75. this.btnRead .Visible = false;         //隐藏已阅按钮
  76. this.btnDelete .Visible = false;       //隐藏删除按钮
  77. break;
  78. default: 
  79. break;
  80. }
  81. sm = null;
  82. dr = null;
  83. }
  84. #endregion
  85. #region 翻页事件
  86. public void DataGrid_PageChanged(object sender,DataGridPageChangedEventArgs e)
  87. {
  88. dgMsgList.CurrentPageIndex = e.NewPageIndex;
  89. BindGrid(Request.Cookies["Username"].Value.ToString(),Session["MsgDispType"]!=null?Session["MsgDispType"].ToString():"1");
  90. }
  91. #endregion
  92. #region Web Form Designer generated code
  93. override protected void OnInit(EventArgs e)
  94. {
  95. //
  96. // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
  97. //
  98. InitializeComponent();
  99. base.OnInit(e);
  100. }
  101. /// <summary>
  102. /// 设计器支持所需的方法 - 不要使用代码编辑器修改
  103. /// 此方法的内容。
  104. /// </summary>
  105. private void InitializeComponent()
  106. {    
  107. this.btnRead.Click += new System.EventHandler(this.btnRead_Click);
  108. this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
  109. this.ID = "Index";
  110. this.Load += new System.EventHandler(this.Page_Load);
  111. }
  112. #endregion
  113. private void btnDelete_Click(object sender, System.EventArgs e)
  114. {
  115. SMS sm = new SMS();
  116. string ids   = "";
  117. foreach(DataGridItem dgi in dgMsgList.Items)
  118. {
  119. CheckBox cb=(CheckBox)(dgi.Cells[0].Controls[1]);
  120. if (cb.Checked==true)
  121. {
  122. int i = dgi.ItemIndex;
  123. string id = dgMsgList.DataKeys[i].ToString();
  124. ids+= id+",";
  125. }
  126. }
  127. if(ids.EndsWith(",")) ids = ids.Substring(0,ids.Length-1);
  128. //选择为空
  129. if( ids==String.Empty)
  130. {
  131. Response.Write("<script language=javascript>alert('请选择消息!');window.location='Index.aspx?DispType="+Session["MsgDispType"].ToString()+"';</script>");
  132. }
  133. else
  134. {
  135. if(sm.MsgDelete(ids))
  136. {
  137. Response.Write("<script language=javascript>alert('短讯删除成功!');window.location='Index.aspx?DispType="+Session["MsgDispType"].ToString()+"';</script>");
  138. }
  139. }
  140. }
  141. private void btnRead_Click(object sender, System.EventArgs e)
  142. {
  143. SMS sm = new SMS();
  144. string Username  = (Request.QueryString["Username"]!=null)?Request.QueryString["Username"].ToString():Request.Cookies["Username"].Value.ToString();
  145. string ids   = "";
  146. foreach(DataGridItem dgi in dgMsgList.Items)
  147. {
  148. CheckBox cb=(CheckBox)(dgi.Cells[0].Controls[1]);
  149. if (cb.Checked==true)
  150. {
  151. int i = dgi.ItemIndex;
  152. string id = dgMsgList.DataKeys[i].ToString();
  153. ids+= id+",";
  154. }
  155. }
  156. if(ids.EndsWith(",")) ids = ids.Substring(0,ids.Length-1);
  157. //选择为空
  158. if( ids==String.Empty)
  159. {
  160. Response.Write("<script language=javascript>alert('请选择消息!');window.location='Index.aspx?DispType="+Session["MsgDispType"].ToString()+"';</script>");
  161. }
  162. else
  163. {
  164. if(sm.ReadMsg(ids,Username))
  165. {
  166. Response.Write("<script language=javascript>alert('短讯已阅!');window.location='Index.aspx?DispType="+Session["MsgDispType"].ToString()+"';</script>");
  167. }
  168. }
  169. }
  170. }
  171. }