What is the difference between <% %> and <%= %> in ASP.NET MVC? And when to use which?
|
3
|
|
|
|
|
|
See also this question. MVC hasn't changed how these bee-stings work, just how often they're used. Basically:
|
||||
|
|
|
<%= %> writes to the output stream (usually html) while <% %> is for executing arbitrary script code. |
||
|
|
|
|
Say you have a method on your page, called "SayHello":
And on your page, you have these statements:
Your output will be:
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. |
||
|
|
|
|
<%= echos the statement out. <% just runs it. |
||
|
|
