本文整理汇总了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>");
}
}
示例2: Load_FromString_LoadedCorrectly
public void Load_FromString_LoadedCorrectly()
{
var tpl = new Template("test", false);
Assert.AreEqual("test", tpl.Get());
}
示例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;
}
示例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("'", "'"));
return writer.GetStringBuilder().ToString();
}