asp.net-mvc-3 – mvc3剃刀条件包装器div

前端之家收集整理的这篇文章主要介绍了asp.net-mvc-3 – mvc3剃刀条件包装器div前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
什么是最好的方式来处理这样的东西:

剃刀代码

@if(!disableRowDiv)
{
    <div class="row">
}

<div>some content here</div>

@if(!disableRowDiv)
{
    </div>
}

所以Razor引擎不会产生这个错误

解析器错误消息:

The if block is missing a closing “}” character. Make sure you have a matching “}” character for all the “{” characters within this block,and that none of the “}” characters are being interpreted as markup.

解决方法

这应该工作
@if(!disableRowDiv)
{
    @:<div class="row">
}
<div>some content here</div>
@if(!disableRowDiv)
{
    @:</div>
}
原文链接:https://www.f2er.com/aspnet/253973.html

猜你在找的asp.Net相关文章