vote up 6 vote down star
2

Hi,

In asp.net mvc, when do we use:

<%= %>

and

<% %>

Do we ever need to put a ; (colon) ?

flag

35% accept rate

3 Answers

vote up 9 vote down check

<%= %> 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.

link|flag
Correct. Same rules as in ASP.NET and ASP Classic apply. – Codewerks Nov 21 '08 at 3:38
vote up 4 vote down

<%="something" %> is just a shortcut for Response.Write("something")

link|flag
vote up 0 vote down

<%= %> is used when you are calling some HtmlHelper method which returns a string e.g.:

<%= Html.ActionLink("Home", "Index", "Home") %>

<% %> is used when you are calling some HtmlHelper method which is void:

<% Html.RenderPartial("Login"); %>
link|flag

Your Answer

Get an OpenID
or

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