In ASP.NET 4.0

should I use new syntax <%: expression %> or 2.0 <%= HttpUtility.HtmlEncode(expression) %>

link|improve this question

73% accept rate
1  
I have a feeling you made this question just to create the asp.net-4 tag.... – John Sheehan Oct 22 '09 at 16:20
@John, I think that tag has existed for awhile, its just always renamed to 4.0 to be consistent with 2.0 and 3.5 – Brandon Oct 22 '09 at 16:24
John no, I don't! – Zote Oct 22 '09 at 16:24
feedback

2 Answers

up vote 1 down vote accepted

Less keystrokes, less chance to make a mistake, easier to read => use the first option.

link|improve this answer
feedback

That's sort of like asking if you should do this:

<%= DateTime.Now %>

or this

<% Response.Write(DateTime.Now) %>

There's no right answer, but one certainly looks better to me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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