Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
ASP.NET 4.0 では
新しい構文<%: expression %>または 2.0を使用する必要がありますか<%= HttpUtility.HtmlEncode(expression) %>
<%: expression %>
<%= HttpUtility.HtmlEncode(expression) %>
キーストロークが減り、間違いが少なくなり、読みやすくなります => 最初のオプションを使用します。
これは、これを行うべきかどうかを尋ねるようなものです。
<%= DateTime.Now %>
またはこれ
<% Response.Write(DateTime.Now) %>
正解はありません。