Is there a way to comment out markup in an .ASPX page?
Is there a way to comment out markup in an .ASPX
page so that it isn't delivered to the client? I have tried the standard comments <!-- -->
but this just gets delivered as a comment and doesn't prevent the control from rendering.
<%--
Commented out HTML/CODE/Markup. Anything with
this block will not be parsed/handled by ASP.NET.
<asp:Calendar runat="server"></asp:Calendar>
<%# Eval(“SomeProperty”) %>
--%>
资源
Bonus answer: The keyboard shortcut in Visual Studio for commenting out anything is Ctrl-KC . This works in a number of places, including C#, VB, Javascript, and aspx pages; it also works for SQL in SQL Management Studio.
You can either select the text to be commented out, or you can position your text inside a chunk to be commented out; for example, put your cursor inside the opening tag of a GridView, press Ctrl-KC, and the whole thing is commented out.
FYI | ctrl + K, C is the comment shortcut in Visual Studio. ctrl + K, U uncomments.
链接地址: http://www.djcxy.com/p/14934.html上一篇: 你的个人方式/评论是什么?
下一篇: 有没有办法在.ASPX页面中注释掉标记?