SelectReceiver.aspx.cs
资源名称:OA.rar [点击查看]
上传用户:xuming1973
上传日期:2014-02-27
资源大小:17511k
文件大小:3k
源码类别:
WEB源码(ASP,PHP,...)
开发平台:
C#
- using System;
- using System.Collections;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Web;
- using System.Web.SessionState;
- using System.Web.UI;
- using System.Web.UI.WebControls;
- using System.Web.UI.HtmlControls;
- using UDS.Components;
- namespace MaiSystem
- {
- /// <summary>
- /// SelectReceiver 的摘要说明。
- /// </summary>
- public class SelectReceiver : System.Web.UI.Page
- {
- protected System.Web.UI.WebControls.Label lblReceiver;
- protected System.Web.UI.WebControls.Label lblCc;
- protected System.Web.UI.WebControls.Label lblBcc;
- protected System.Web.UI.WebControls.Label lblAddressBook;
- protected System.Web.UI.WebControls.DropDownList listAddressBook;
- protected System.Web.UI.WebControls.DropDownList listAccount;
- public string ClassID,DispType;
- protected System.Web.UI.WebControls.DropDownList listDept;
- private void Page_Load(object sender, System.EventArgs e)
- {
- ClassID = Request.QueryString["ClassID"].ToString();
- DispType = Request.QueryString["type"].ToString();
- if(!Page.IsPostBack )
- {
- PopulateData();
- }
- }
- #region 初始化下拉列表框
- /// <summary>
- /// 对数据进行初始化
- /// </summary>
- private void PopulateData()
- {
- Staff staff = new Staff();
- listAccount.Items.Clear();
- if(DispType=="1")
- listAccount.DataSource = staff.GetStaffInTeam(Int32.Parse(ClassID));
- else
- listAccount.DataSource = staff.GetAllStaffs();
- listAccount.DataTextField = "RealName";
- listAccount.DataValueField = "Staff_Name";
- listAccount.DataBind ();
- listDept .DataSource = staff.GetPositionList(1);
- listDept.DataTextField = "Position_Name";
- listDept.DataValueField = "Position_ID";
- listDept.DataBind();
- listDept.Items.Insert(0,new ListItem("公司所有部门","0"));
- listDept.SelectedIndex = 0;
- listDept.Attributes["onclick"]="SaveValue()";
- staff=null;
- }
- #endregion
- #region 下拉列表事件
- public void DeptListChange(object sender, System.EventArgs e)
- {
- Staff staff = new Staff();
- if(listDept.SelectedItem .Value=="0")
- listAccount.DataSource = staff.GetStaffInTeam(Int32.Parse(ClassID));
- else
- listAccount.DataSource = staff.GetStaffByPosition(Int32.Parse(listDept.SelectedItem.Value));
- listAccount.DataTextField = "RealName";
- listAccount.DataValueField = "Staff_Name";
- listAccount.DataBind ();
- staff = null;
- }
- #endregion
- #region Web Form Designer generated code
- override protected void OnInit(EventArgs e)
- {
- //
- // CODEGEN:该调用是 ASP.NET Web 窗体设计器所必需的。
- //
- InitializeComponent();
- base.OnInit(e);
- }
- /// <summary>
- /// 设计器支持所需的方法 - 不要使用代码编辑器修改
- /// 此方法的内容。
- /// </summary>
- private void InitializeComponent()
- {
- this.Load += new System.EventHandler(this.Page_Load);
- }
- #endregion
- }
- }