示例#1
0
        public ActionResult Index()
        {
            if (Session["UserId"] == null)
            {
                return Redirect("/admin/login");
            }

            WebConfig model = null;

            WebConfigService service = new WebConfigService();
            model = service.GetWebConfig();

            if (model == null)
            {
                model = new WebConfig();
            }
            return View(model);
        }
示例#2
0
        /// <summary>
        /// 更新网站配置信息
        /// </summary>
        /// <param name="webConfig">网站配置信息对象</param>
        public bool EditWebConfig(WebConfig webConfig)
        {
            bool result = false;

            var conn = DBRepository.GetSqlConnection();
            try
            {
                conn.Open();
                result = DBRepository.Update<WebConfig>(webConfig, "Id", conn);
            }
            catch (Exception e)
            {
                LogService.Log("更新网站配置信息", e.ToString());
            }
            finally
            {
                conn.Close();
            }

            return result;
        }
示例#3
0
        public ActionResult Edit(WebConfig newWebConfig)
        {
            if (Session["UserId"] == null)
            {
                return Redirect("/admin/login");
            }

            WebConfigService service = new WebConfigService();
            WebConfig webConfig = service.GetWebConfig();

            webConfig.WebName = string.IsNullOrEmpty(newWebConfig.WebName) ? string.Empty : newWebConfig.WebName;
            webConfig.Title = string.IsNullOrEmpty(newWebConfig.Title) ? string.Empty : newWebConfig.Title;
            webConfig.Keywords = string.IsNullOrEmpty(newWebConfig.Keywords) ? string.Empty : newWebConfig.Keywords;
            webConfig.Description = string.IsNullOrEmpty(newWebConfig.Description) ? string.Empty : newWebConfig.Description;
            webConfig.DomainName = string.IsNullOrEmpty(newWebConfig.DomainName) ? string.Empty : newWebConfig.DomainName;
            webConfig.DomainMobile = string.IsNullOrEmpty(newWebConfig.DomainMobile) ? string.Empty : newWebConfig.DomainMobile;
            webConfig.DomainImage = string.IsNullOrEmpty(newWebConfig.DomainImage) ? string.Empty : newWebConfig.DomainImage;
            webConfig.Notice = string.IsNullOrEmpty(newWebConfig.Notice) ? string.Empty : newWebConfig.Notice;
            webConfig.ICP = string.IsNullOrEmpty(newWebConfig.ICP) ? string.Empty : newWebConfig.ICP;
            webConfig.Tel = string.IsNullOrEmpty(newWebConfig.Tel) ? string.Empty : newWebConfig.Tel;
            webConfig.Phone = string.IsNullOrEmpty(newWebConfig.Phone) ? string.Empty : newWebConfig.Phone;
            webConfig.QQ = string.IsNullOrEmpty(newWebConfig.QQ) ? string.Empty : newWebConfig.QQ;
            webConfig.Email = string.IsNullOrEmpty(newWebConfig.Email) ? string.Empty : newWebConfig.Email;
            webConfig.Weibo = string.IsNullOrEmpty(newWebConfig.Weibo) ? string.Empty : newWebConfig.Weibo;
            webConfig.Address = string.IsNullOrEmpty(newWebConfig.Address) ? string.Empty : newWebConfig.Address;
            webConfig.StatisticalCode = string.IsNullOrEmpty(newWebConfig.StatisticalCode) ? string.Empty : newWebConfig.StatisticalCode;
            webConfig.Tags = string.IsNullOrEmpty(newWebConfig.Tags) ? string.Empty : newWebConfig.Tags;

            if (!string.IsNullOrEmpty(webConfig.WebName))
            {
                service.EditWebConfig(webConfig);
                WitBird.Sex.WebV2.Cache.UpdateWebConfig();//更新缓存
            }

            return Redirect("/admin/webconfig");
        }
示例#4
0
文件: Cache.cs 项目: Oldsooh/XGDG
 public static void UpdateWebConfig()
 {
     WebConfigService webConfigService = new WebConfigService();
     webConfig = webConfigService.GetWebConfig();
 }