Possible Duplicate:
ASP.NET “special” tags
Is there a proper name for <%...> in ASP.NET, or do people really call it "Angle Bracket Percent"?
Possible Duplicate:
ASP.NET “special” tags
Is there a proper name for <%...> in ASP.NET, or do people really call it "Angle Bracket Percent"?
in ASP.NET <% ... %> represents server-side code which has been in-lined to an ASPX HTML document. The name would be dependent on which variety.
<% ... %> Normal Code block
<%= ... %> Serverside code wrapped in Response.Write()
<%# ... %> Specific to Databinding
<%-- --%> Server side comment
<%$ ... %> for expression bindings
See Meaning of the Various Symbols in aspx page for more information on this topic.
According to MSDN, they are called code render blocks.