3

重複の可能性:
ASP.NET の「特別な」タグ

<%: %>とはどう違い<%= %>ますか?

4

2 に答える 2

3

<%= ... %>Response.Write() と同等です。<%: ... %>タグ内の値を自動 html エンコードすることを除いて、タグは同じです。

于 2012-06-14T12:26:47.020 に答える
2

See the blog post HTML Encoding Code Blocks With ASP.NET 4. Basically the colon version (new to 4.0) does the HTML encoding for you.

于 2012-06-14T12:25:38.290 に答える