Ejemplo n.º 1
0
 public ActionResult Base(vConfig Config)
 {
     ConfigurationManager.AppSettings["VerifyProductComment"]     = Config.VerifyProductComment ? "true" : "false";
     ConfigurationManager.AppSettings["VerifyService"]            = Config.VerifyService ? "true" : "false";
     ConfigurationManager.AppSettings["VerifyLocalTong"]          = Config.VerifyLocalTong ? "true" : "false";
     ConfigurationManager.AppSettings["VerifyLocalTongComment"]   = Config.VerifyLocalTongComment ? "true" : "false";
     ConfigurationManager.AppSettings["InformationComment"]       = Config.InformationComment ? "true" : "false";
     ConfigurationManager.AppSettings["VerifyInformationComment"] = Config.VerifyInformationComment ? "true" : "false";
     ConfigurationManager.AppSettings["ServiceTel"] = Config.ServiceTel;
     return(RedirectToAction("Success", "Shared", null));
 }
Ejemplo n.º 2
0
        /// <summary>
        /// 基本信息设置
        /// </summary>
        /// <returns></returns>
        public ActionResult Index()
        {
            var config = new vConfig
            {
                InformationComment       = ViewBag.InformationComment,
                ServiceTel               = ViewBag.ServiceTel,
                VerifyLocalTong          = ViewBag.VerifyLocalTong,
                VerifyLocalTongComment   = ViewBag.VerifyLocalTongComment,
                VerifyProductComment     = ViewBag.VerifyProductComment,
                VerifyService            = ViewBag.VerifyService,
                VerifyInformationComment = ViewBag.VerifyInformationComment
            };

            return(View(config));
        }