⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 selectreceiver.aspx.cs

📁 协同办公系统.含权限短信项目,适合咨询服务性企业
💻 CS
字号:
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
	}
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -