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

📄 webconfigurationsettings.cs

📁 1、用SQL查询器打开install目录下的dooogo.sql运行之后创建数据库dooogo。 2、然后打开web.config修改 <DbProvider type="Club.Fram
💻 CS
字号:
//Copyright (C) 2006 dooogo.com
//Author:benben
//www.aspxclub.com
using System;
using System.Xml.Serialization;
using System.Configuration;
using Club.Framework.Providers;
namespace Club.Framework.Configuration
{
	/// <summary>
	/// 网站配置类
	/// </summary>
	[Serializable]
	public class WebConfigurationSettings
	{
		public WebConfigurationSettings()
		{
		}
		public static WebConfigurationSettings Instance()
		{
			return ((WebConfigurationSettings)ConfigurationSettings.GetConfig("WebConfigurationSettings"));
		}
		private WebProviders _webProviders;
		public WebProviders WebProviders
		{
			get {return this._webProviders;}
			set {this._webProviders = value;}
		}
		private string _aggregateTitle;
		public string AggregateTitle
		{
			get{return _aggregateTitle;}
			set{_aggregateTitle=value;}
		}
		private int _cookieExpires;
		public int CookieExpires
		{
			get{return this._cookieExpires;}
			set{this._cookieExpires=value;}
		}
		private int _registerState;
		public int RegisterState
		{
			get{return this._registerState;}
			set{this._registerState=value;}
		}
		private bool upFileIsMakeDir;
		public bool UpFileIsMakeDir
		{
			get{return this.upFileIsMakeDir;}
			set{this.upFileIsMakeDir=value;}
		}
		private int upMusicMaxLength;
		public int UpMusicMaxLength
		{
			get{return this.upMusicMaxLength;}
			set{this.upMusicMaxLength=value;}
		}
		private int upImageMaxLength;
		public int UpImageMaxLength
		{
			get{return this.upImageMaxLength;}
			set{this.upImageMaxLength=value;}
		}
	}
}

⌨️ 快捷键说明

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