Hi,
In asp.net mvc, when do we use:
<%= %>
and
<% %>
Do we ever need to put a ; (colon) ?
|
2
|
Hi, In asp.net mvc, when do we use: <%= %> and <% %> Do we ever need to put a ; (colon) ?
|
||
|
|
|
|
<%= %> renders the output (string) of the contained command to the response. <% %> wraps executable statements (logic) in the view to control what gets executed. You don't use semicolons in the <%= %> blocks, but may in the <% %> depending on what statements are included. EDIT: I tried to do an example, but the SO editor doesn't seem to render the syntax properly. :-( EDIT: Here's a link to the reference. |
|||
|
|
|
|
||
|
|
|
|
<%= %> is used when you are calling some HtmlHelper method which returns a string e.g.:
<% %> is used when you are calling some HtmlHelper method which is void:
|
||
|
|