MVC3 Razor: Displaying html within code blocks

后端 未结 6 1026
孤独总比滥情好
孤独总比滥情好 2020-12-12 17:39

In my cshtml files I have a lot of blocks with stuff like this:

@if(Model.foo)
{
    Hello World
}

The only reason

6条回答
  •  [愿得一人]
    2020-12-12 18:34

    many developers has provided many ways above .. here is one more which is working fine in MVC 4 .. I hope it will work for MVC 3 also ..

    @if(Model.foo)
    {
        @Html.Label("Hello World")
    }
    

提交回复
热议问题