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

📄 switchcontrol.ascx.cs

📁 community server 源码
💻 CS
字号:
//------------------------------------------------------------------------------
// <copyright company="Telligent Systems">
//     Copyright (c) Telligent Systems Corporation.  All rights reserved.
// </copyright> 
//------------------------------------------------------------------------------

using System;
using System.Collections;
using System.Data;
using CommunityServer.Components;
using CommunityServer.ControlPanel.UI;
using CommunityServer.Files.Components;
using CA = ComponentArt.Web.UI;

namespace CommunityServer.ControlPanel.Files
{
	/// <summary>
	///		Summary description for SwitchControl.
	/// </summary>
	public class SwitchControl : BaseFilesGridControl
	{
		protected CA.Grid Grid1;

		private void Page_Load(object sender, EventArgs e)
		{
			if(!Page.IsPostBack  && !base.FilesPage.IsCallBack)
			{
				buildGrid();
				Grid.DataBind();
			}
		}

		protected override void buildGrid()
		{
			CSContext context = CSContext.Current;

			ArrayList sections;

			sections = Folders.GetFolders(true, false);
			sections = Sections.FilterByAccessControl(sections, Permission.Administer, context.User);

			DataTable dt = CADataConverter.ToDataTable(sections, typeof(Section));

			dt.DefaultView.Sort = "ApplicationKey";

			//If we actually have grouping turned on, we predefine the group to GroupName ASC
			if(this.EnableGrouping)
			{
				//This is the pre-defined group by for the switch page
				Grid.GroupBy = "GroupName ASC";
				dt.DefaultView.Sort = "GroupName";
			}

			Grid.DataSource = dt;
			this.RecordCount = dt.Rows.Count;
			ApplyUserSettings();
		}

		protected override void ConfigureGrid()
		{
			AddGridCheckMarkTemplate("IsActive");

			//See if the user has a reutrn URL so we can send them back to their original requested page
			string sectionURL = Globals.AppendQuerystring("default.aspx", @"sectionid=## DataItem.GetMember(""SectionID"").Text ##", true);
			string url = CSContext.Current.RawUrl;
			if(!Globals.IsNullorEmpty(url) && url.ToLower().IndexOf("switch.aspx") < 0 )
				sectionURL = Globals.AppendQuerystring(url, @"sectionid=## DataItem.GetMember(""SectionID"").Text ##", true); 
			AddGridHrefTemplate(sectionURL,"","Name", @"## DataItem.GetMember(""Description"").Text ##");
			AddGridHrefTemplate(sectionURL, "ApplicationKey") ;

			AddGridPagerTemplate("Name", "GroupName","IsActive");
		}

		#region Web Form Designer generated code
		override protected void OnInit(EventArgs e)
		{
			//
			// CODEGEN: This call is required by the ASP.NET Web Form Designer.
			//
			InitializeComponent();
			base.OnInit(e);
		}
		
		/// <summary>
		///		Required method for Designer support - do not modify
		///		the contents of this method with the code editor.
		/// </summary>
		private void InitializeComponent()
		{
			this.Load += new EventHandler(this.Page_Load);
			this.EnableSearchBox =true;

		}
		#endregion
	}
}

⌨️ 快捷键说明

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