Ads 468x60px

Pages

Blogroll

Friday, February 17, 2012

Render Section in MVC3

Define in page:
@RenderSection("ValidationRules ", true)

@if (IsSectionDefined("ValidationRules"))
{
@section ValidationRules
{
//Put your html code here
    @Html.LabelFor(m => m.Subject)
}
}

0 comments:

Post a Comment