/// <summary> /// 绑定模板配置第二步 /// </summary> private void BindTemplate() { string msg = @"您尚未指定当前模板组,您可以:<br>" + "(1)在下面可选模板组中,选择一个,点击”应用“;<br>" + "(2)创建一个新的模板组(上面工具条中点击”创建模板组“);<br>" + "(3)上传一个模板组包(工具条中点击”上传模板“)。"; GeneralConfigInfo si = GeneralConfigs.GetConfig(); if (si.DefaultTemplateGroupFileName != "") { List <TemplateGroup> tg = new List <TemplateGroup>(); try { tg.Add(TemplateHelper.GetTemplateGroup(si.DefaultTemplateGroupFileName)); if (tg.Count < 1) { UploadHyperLink.Visible = true; } UseTemplateGroupsDataList.DataSource = tg; UseTemplateGroupsDataList.DataBind(); } catch { UploadHyperLink.Visible = true; //UseTemplateGroupsLabel.Text = msg; } } else { UploadHyperLink.Visible = true; //UseTemplateGroupsLabel.Text = msg; } TemplateGroupsDataList.DataSource = TemplateHelper.GetTemplateGroups(null); TemplateGroupsDataList.DataBind(); }
protected override void Initialize() { string msg = @"您尚未指定当前模板组,您可以:<br>" + "(1)在下面可选模板组中,选择一个,点击”应用“;<br>" + "(2)创建一个新的模板组(上面工具条中点击”创建模板组“);<br>" + "(3)上传一个模板组包(工具条中点击”上传模板“)。"; GeneralConfigInfo si = GeneralConfigs.GetConfig(); if (si.DefaultTemplateGroupFileName != "") { List <TemplateGroup> tg = new List <TemplateGroup>(); try { tg.Add(TemplateHelper.GetTemplateGroup(si.DefaultTemplateGroupFileName)); UseTemplateGroupsDataList.DataSource = tg; UseTemplateGroupsDataList.DataBind(); } catch { UseTemplateGroupsLabel.Text = msg; } } else { UseTemplateGroupsLabel.Text = msg; } TemplateGroupsDataList.DataSource = TemplateHelper.GetTemplateGroups(null); TemplateGroupsDataList.DataBind(); //获取商城的免费模板 GetShopFreeTemplateGroup(); }
void BindTemplate() { string msg = @"您尚未指定当前模板组,您可以:<br/>" + "(1) 在下面可选模板组中,选择一个,点击“应用”;<br/>" + "(2) 创建一个新的模板组(上面工具条中点击“创建模板组”);<br/>" + "(3) 上传一个模板组包(工具条中点击“上传模板”)。"; GeneralConfigInfo gi = GeneralConfigs.GetConfig(); if (!string.IsNullOrEmpty(gi.DefaultTemplateGroupFileName)) { List <SkinInfo> skins = new List <SkinInfo>(); try { skins.Add(TemplateHelper.GetTemplateGroup(gi.DefaultTemplateGroupFileName)); if (skins.Count < 1) { UploadHyperLink.Visible = true; } UseTemplateGroupsDataList.DataSource = skins; UseTemplateGroupsDataList.DataBind(); } catch { UploadHyperLink.Visible = true; UseTemplateGroupsLabel.Text = msg; } } else { UploadHyperLink.Visible = true; UseTemplateGroupsLabel.Text = msg; } UseTemplateGroupsDataList.DataSource = TemplateHelper.GetTemplateGroup(null); UseTemplateGroupsDataList.DataBind(); }