当前位置: 首页>>代码示例>>C#>>正文


C# Template.Get方法代码示例

本文整理汇总了C#中Template.Get方法的典型用法代码示例。如果您正苦于以下问题:C# Template.Get方法的具体用法?C# Template.Get怎么用?C# Template.Get使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Template的用法示例。


在下文中一共展示了Template.Get方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: btnSalvar_Click

    protected void btnSalvar_Click(object sender, EventArgs e)
    {
        var template = new Template();
        try
        {
            if (txtId.Text != "")
            {
                template.IDTemplate = int.Parse(txtId.Text);
                template.Get();
            }

            template.Descricao = txtNome.Text;
            template.Chave = txtChave.Text;
            template.Conteudo = txtConteudo.Text;
            template.Save();
            GetTemplate((int)template.IDTemplate);

            Page.ClientScript.RegisterStartupScript(this.GetType(), "script", "<script>alert('Registro salvo.')</script>");
        }
        catch (Exception err)
        {
            Page.ClientScript.RegisterStartupScript(this.GetType(), "script", "<script>alert('" + FormatError.FormatMessageForJAlert(err.Message) + "')</script>");
        }
    }
开发者ID:Didox,项目名称:MVC_e_Velocit_app,代码行数:24,代码来源:Template.aspx.cs

示例2: Load_FromString_LoadedCorrectly

		public void Load_FromString_LoadedCorrectly()
		{
			var tpl = new Template("test", false);

			Assert.AreEqual("test", tpl.Get());
		}
开发者ID:fr4gles,项目名称:Simplify,代码行数:6,代码来源:TemplateTests.cs

示例3: GetTemplate

    private void GetTemplate(int idTemplate)
    {
        dvSalvarTemplate.Visible = true;
        dvListarTemplates.Visible = false;

        var template = new Template();
        template.IDTemplate = idTemplate;
        template.Get();

        txtId.Text = template.IDTemplate.ToString();
        txtNome.Text = template.Descricao;
        txtConteudo.Text = template.Conteudo;
        txtChave.Text = template.Chave;
    }
开发者ID:Didox,项目名称:MVC_e_Velocit_app,代码行数:14,代码来源:Template.aspx.cs

示例4: Include

 public string Include(string nome)
 {
     Velocity.Init();
     var template = new Template();
     template.Chave = nome;
     template.Get();
     if (template.Conteudo == null) template.Conteudo = "";
     var writer = new StringWriter();
     var context = new VelocityContext();
     context.Put("template", new Template());
     context.Put("componente", new Componente());
     var usuario = Usuario.Current();
     if (usuario != null) context.Put("usuario", usuario);
     context.Put("site", Pagina.Site());
     context.Put("area", Pagina.GetAreaCorrente(false));
     Velocity.Evaluate(context, writer, "", template.Conteudo.Replace("&#39;", "'"));
     return writer.GetStringBuilder().ToString();
 }
开发者ID:Didox,项目名称:MVC_e_Velocit_app,代码行数:18,代码来源:Template.cs


注:本文中的Template.Get方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。