In ASP.NET (*.aspx and *.tt) what is the meaning of the following markups: <#= #> <# #> <#+ #>?
|
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.
|
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.
there are more of these as well, examples of which can be found here. |
|||
|
|