vote up 2 vote down star
3

What is the difference between <% %> and <%= %> in ASP.NET MVC? And when to use which?

flag

49% accept rate

4 Answers

vote up 13 vote down check

See also this question. MVC hasn't changed how these bee-stings work, just how often they're used.

Basically:

  • <% - execute code
  • <%@ - page directive
  • <%$ - resource access
  • <%= - explicit output to page
  • <%# - data binding
  • <%-- - server side comment block
link|flag
2  
bee-stings, nice, hadn't heard that one.. :) great response btw – Jeff Atwood Oct 13 '08 at 9:35
vote up 8 vote down

<%= %> writes to the output stream (usually html) while <% %> is for executing arbitrary script code.

link|flag
vote up 6 vote down

Say you have a method on your page, called "SayHello":

protected string SayHello()
{
    return "Hello!";
}

And on your page, you have these statements:

first: <%= SayHello() %>
second: <% SayHello() %>

Your output will be:

first: Hello!
second:

when you use <%= %>, what you put in there is inserted into the html at that position. If you use <% %>, you're just inserting some code into your page.

link|flag
vote up 2 vote down

<%= echos the statement out.

<% just runs it.

link|flag

Your Answer

Get an OpenID
or

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