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?
What is the difference between I couldn't find anything information about this. It's impossible to find "<%=" using a search engine. Do these tags have a name?
| |||||
feedback
|
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.
|
| ||||
|
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. | |||||||||
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(). | |||
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. | |||
|
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:
A shortcut for HttpResponse.Write:
Data Binding Expressions:
In a property:
Server-side comments, such that they do not appear in the client's page source:
| |||
|
feedback
|