using System; using System.Collections.Generic; using System.Text; namespace HZQR.Web.Common { /// /// 预先配置的一定变量 /// public class ConfigerKeys { //系统版本 /// /// 版本号全称 /// public const string ASSEMBLY_VERSION = "3.0.0"; /// /// 版本年号 /// public const string ASSEMBLY_YEAR = "2013"; //File====================================================== /// /// 插件配制文件名 /// public const string FILE_PLUGIN_XML_CONFING = "plugin.config"; /// /// 站点配置文件名 /// public const string FILE_SITE_XML_CONFING = "Configpath"; /// /// URL配置文件名 /// public const string FILE_URL_XML_CONFING = "Urlspath"; /// /// 用户配置文件名 /// public const string FILE_USER_XML_CONFING = "Userpath"; /// /// 订单配置文件名 /// public const string FILE_ORDER_XML_CONFING = "Orderpath"; /// /// 升级代码 /// public const string FILE_URL_UPGRADE_CODE = "267C2643EE401DD2F0A06084F7931C4DEC76E7CAA1996481FE8F5081A8936409058D07A6F5E2941C"; /// /// 消息代码 /// public const string FILE_URL_NOTICE_CODE = "267C2643EE401DD2F0A06084F7931C4DEC76E7CAA1996481FE8F5081A8936409D037BEA6A623A0A1"; //Directory================================================== /// /// ASPX目录名 /// public const string DIRECTORY_REWRITE_ASPX = "aspx"; /// /// HTML目录名 /// public const string DIRECTORY_REWRITE_HTML = "html"; /// /// MOBILE目录名 /// public const string DIRECTORY_REWRITE_MOBILE = "mobile"; /// /// 插件目录名 /// public const string DIRECTORY_REWRITE_PLUGIN = "plugin"; //Cache====================================================== /// /// 站点配置 /// public const string CACHE_SITE_CONFIG = "dt_cache_site_config"; /// /// 用户配置 /// public const string CACHE_USER_CONFIG = "dt_cache_user_config"; /// /// 订单配置 /// public const string CACHE_ORDER_CONFIG = "dt_cache_order_config"; /// HttpModule映射类 /// public const string CACHE_SITE_HTTP_MODULE = "dt_cache_http_module"; /// /// 绑定域名 /// public const string CACHE_SITE_HTTP_DOMAIN = "dt_cache_http_domain"; /// /// 站点一级目录名 /// public const string CACHE_SITE_DIRECTORY = "dt_cache_site_directory"; /// /// 站点ASPX目录名 /// public const string CACHE_SITE_ASPX_DIRECTORY = "dt_cache_site_aspx_directory"; /// /// URL重写映射表 /// public const string CACHE_SITE_URLS = "dt_cache_site_urls"; /// /// URL重写LIST列表 /// public const string CACHE_SITE_URLS_LIST = "dt_cache_site_urls_list"; /// /// 升级通知 /// public const string CACHE_OFFICIAL_UPGRADE = "dt_official_upgrade"; /// /// 官方消息 /// public const string CACHE_OFFICIAL_NOTICE = "dt_official_notice"; //Session===================================================== /// /// 网页验证码 /// public const string SESSION_CODE = "dt_session_code"; /// /// 短信验证码 /// public const string SESSION_SMS_CODE = "dt_session_sms_code"; /// /// 后台管理员 /// public const string SESSION_ADMIN_INFO = "dt_session_admin_info"; /// /// 会员用户 /// public const string SESSION_USER_INFO = "dt_session_user_info"; //Cookies===================================================== /// /// 防重复顶踩KEY /// public const string COOKIE_DIGG_KEY = "dt_cookie_digg_key"; /// /// 防重复评论KEY /// public const string COOKIE_COMMENT_KEY = "dt_cookie_comment_key"; /// /// 防止下载重复扣各分 /// public const string COOKIE_DOWNLOAD_KEY = "dt_download_attach_key"; /// /// 记住会员用户名 /// public const string COOKIE_USER_NAME_REMEMBER = "dt_cookie_user_name_remember"; /// /// 记住会员密码 /// public const string COOKIE_USER_PWD_REMEMBER = "dt_cookie_user_pwd_remember"; /// /// 购物车 /// public const string COOKIE_SHOPPING_CART = "dt_cookie_shopping_cart"; /// /// 返回上一页 /// public const string COOKIE_URL_REFERRER = "dt_cookie_url_referrer"; } }