I'm new to ASP.NET MVC. I've seen both <%= ... %> and <%: ... %>. I'm familiar with the first from classic ASP days, but not the latter. What is the difference between the two?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
Using <%: tells ASP.NET 4.0 to perform a Server.HtmlEncode() on the value being displayed. For more info, see ScottGu's post here. |
|||
|
|
|
Link to video explaining the shortcut (it's a short clip): |
||||
|
|
|
<%: expression %> is an HTML encoded expression and was introduced in ASP.NET 4 It is equivalent to <%= HttpUtility.HtmlEncode(expression) %> Go here for more detail. |
|||
|
|