Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

In ASP.NET (*.aspx and *.tt) what is the meaning of the following markups: <#= #> <# #> <#+ #>?

share|improve this question
1  
What did you not understand in the documentation? – Oded Aug 20 '12 at 13:49

closed as not a real question by Daniel A. White, Oded, podiluska, Uwe Keim, John Saunders Aug 20 '12 at 18:55

It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, see the FAQ.

1 Answer

up vote 3 down vote accepted

The markup you describe in your question has nothing to do with ASP.NET. They are examples of T4 template markup syntax. T4 templates are transformed within Visual Studio and can be used to create any type of file, although most commonly they are used for code generation.

<#= #> executes the code within the markup and returns the text result. Example:

namespace <#= this.TargetNamespace #> { // code hurr

<# #> executes the code within but returns void. Example:

This collection contains the following foos:
<#foreach(var foo in bar){ #>
    <#= foo.Name + Environment.NewLine #>
<# } #>

<#+ #> define reusable methods that can be called within the template. For example,

This collection contains the following types:
<#foreach(var foo in bar){ #>
    <#= GetType(foo) #>
<# } #>

<#+  public string GetType(foo){ return foo.GetType().FullName; } #>

there are more of these as well, examples of which can be found here.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.