Exemplo n.º 1
0
        override protected void OnInit(EventArgs e)
        {
            base.OnInit(e);
            
            if (errInitTemplates != "")
            {
                Response.Write(errInitTemplates);
                return;
            }
            //1获得模版基本信息
            BLL.wx_templates tBll = new BLL.wx_templates();
            templateIndexFileName = tBll.GetTemplatesFileNameByWid(wid);
            if (templateIndexFileName == null || templateIndexFileName.Trim() == "")
            {
                errInitTemplates = "不存在该帐号或者该帐号尚未设置模版!";
                Response.Write(errInitTemplates);
                Response.End();
                return;
            }

            tPath = MyCommFun.GetRootPath() + "/templates/detail/type1/news_show.html";
            TemplateMgr template = new TemplateMgr(tPath, wid);
            template.tType = TemplateType.News;
            template.openid = MyCommFun.RequestOpenid();
            template.OutPutHtml("type1", wid);


        }
Exemplo n.º 2
0
        override protected void OnInit(EventArgs e)
        {
            base.OnInit(e);

            if (errInitTemplates != "")
            {
                Response.Write(errInitTemplates);
                return;
            }
            //1获得模版基本信息
            BLL.wx_templates tBll = new BLL.wx_templates();
          string   templateErJiFileName = tBll.GetErJiTemplatesFileNameByWid(wid);
          if (templateErJiFileName == null || templateErJiFileName.Trim() == "")
          {
              tPath = MyCommFun.GetRootPath() + "/templates/category/albums/category.html";
          }
          else
          {
              tPath = MyCommFun.GetRootPath() + "/templates/category/" + templateErJiFileName + "/category.html";
          }


           
            TemplateMgr template = new TemplateMgr(tPath, wid);
            template.tType = TemplateType.Channel;
            template.openid = MyCommFun.RequestOpenid();
            template.OutPutHtml(templateErJiFileName, wid);

        }