Possible Duplicate:
Are <%: and <%= the same thing as embbed code (expression) blocks
I am developing an ASP.NET MVC 2 application using .NET 4.0. Just wanted to know, what is the difference between
<%: item["Title"] %>
and
<%= item["Title"] %>
?