你如何使用Razor视图引擎声明评论?
使用ASP.NET MVC的默认视图引擎,你可以像这样声明一个服务器端注释:
<%-- This is a comment --%>
此评论只会在服务器端显示,并且不会发送给客户端。 我将如何对Razor视图引擎进行相同操作?
用@*
开始注释块,用*@
结束注释块。
类似于C#( /*
和*/
)
@* single line comment *@
要么
@*
this is a comment
this is another
*@
更多关于剃刀在顾客博客上的评论。
链接地址: http://www.djcxy.com/p/85287.html上一篇: How do you declare a comment using the Razor view engine?
下一篇: asp.net mvc 3