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

📄 ftb.emoteiconpicker.aspx.cs

📁 ASP开发网站的 关于网站的设计和说明 还有SQL的程序 数据库
💻 CS
字号:
using System;
using System.Collections;
using System.ComponentModel;
using System.Data;
using System.IO;
using System.Drawing;
using System.Web;
using System.Web.SessionState;
using System.Web.UI;
using System.Web.UI.WebControls;
using System.Web.UI.HtmlControls;

namespace ASPNET.StarterKit.Communities.Engine.Framework.HtmlTextBox
{
	/// <summary>
	/// Summary description for ftb_emoteiconpicker.
	/// </summary>
	public class ftb_emoteiconpicker : System.Web.UI.Page
	{
		private void Page_Load(object sender, System.EventArgs e)
		{
			// Put user code to initialize the page here
		}

		protected override void OnPreRender(EventArgs e)
		{
			base.OnPreRender (e);
			string scriptKey = "EmotePicker";
			if (!Page.IsClientScriptBlockRegistered(scriptKey)) 
			{
				Page.RegisterArrayDeclaration("emoticonList", EmoticonList);
			}
			if (!Page.IsStartupScriptRegistered(scriptKey))
			{
				Page.RegisterStartupScript(scriptKey, String.Format("<script language=\"JavaScript\">var appBasePath='{0}'</script>", CommunityGlobals.AppPath));                 
			}
		}


		string EmoticonList 
		{
			get 
			{
				string strList = String.Empty;
				string[] arrFiles = Directory.GetFiles(Page.MapPath(EmoticonPath), "*.gif");
				for (int i=0;i<arrFiles.Length;i++)
					if (i==0)
						strList = "'" + Path.GetFileName(arrFiles[i]) + "'";
					else
						strList += ",'" + Path.GetFileName(arrFiles[i]) + "'";
                
				return strList;  
			}
		}

		string EmoticonPath 
		{
			get { return ResolveUrl("~/Communities/Common/Images/Emoticons/"); }
		}

		#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 System.EventHandler(this.Page_Load);
		}
		#endregion
	}
}

⌨️ 快捷键说明

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