Possible Duplicate:
ASP.NET “special” tags

What is the difference between <%# ... %>, <%= ... %> and <%$ ... %>?

I couldn't find anything information about this. It's impossible to find "<%=" using a search engine.

Do these tags have a name?

link|improve this question

74% accept rate
1  
As far as terminology I think they are called inline expressions. – AaronLS Apr 13 '10 at 21:34
feedback

closed as exact duplicate by womp, zombat, Robert Harvey, sth, MiffTheFox Apr 15 '10 at 1:11

This question covers exactly the same ground as earlier questions on this topic; its answers may be merged with another identical question. See the FAQ for guidance on how to improve it.

5 Answers

up vote 4 down vote accepted

<%= ... %> is generally equivalent to Response.Write(...) it cannot be used in a control attribute that is runat="server"

<%: ... %> (as of .NET v4.0) is an html encoded version of <%= %> (as @Eric mentions)

<%# ... %> is used in data-binding context for Bind, Eval or Output (as @Ray mentions)

<%$ ... %> is used in the context of a control attribute with runat="server" (google "expression builder" also have a look at making a general purpose 'Code' expression builder. it is evaluated when the attribute/Parameter is required by the control.

link|improve this answer
feedback

<%# %> will attempt to databind to a data source, using the Bind() function. This makes it a two-way function (read and write).

<%= %> will make the data read-only.

link|improve this answer
2  
Also <%= %> prints whatever is inbetween the blocks, where as <% %> simply executes those statements – Jimmy Apr 13 '10 at 21:29
2  
And now we also have <%: %> for html encoded output as well. – Eric Petroelje Apr 13 '10 at 21:30
feedback

<%# %> is evaluated during data binding. It does not necessarily require Eval() or Bind() and Matthew suggested - I use it frequently to display plain text in a repeater control.

<%= %> is evaluated as the page renders. It is equivalent to calling Response.Write().

link|improve this answer
+1 I was about to ask on another answer about "when" each is evaluated. – AaronLS Apr 13 '10 at 21:37
feedback

<%# %> can ONLY be used in data-binding context.

<%= %> expects a string value which it will then include in the output stream. So either a string variable or a method which returns a string. Anything else will cause an error.

link|improve this answer
feedback

I found some good information that clarifies the terminology for your future google searches:

http://authors.aspalliance.com/aspxtreme/aspnet/syntax/aspnetpagesyntax.aspx

Code Render Blocks:

<% inline code %>

A shortcut for HttpResponse.Write:

<%=inline expression %>

Data Binding Expressions:

<%# databinding expression %>

In a property:

<tagprefix:tagname property = "<%# databinding expression %>" runat="server" />

Server-side comments, such that they do not appear in the client's page source:

<%-- commented out code or content --%>
link|improve this answer
feedback

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