1.2.5.View
1.Rasor Syntax
Rasor code block
@{ }
comments
@* *@
class
@{ var className = Model._costmers.Count > 5 ? "popular" : null; } h2 class="@className">@Model._movie.Name</h2
else, if
@if (Model._costmers.Count == 0) { <p>No one has rent</p> }
2.Partial View
render partial view
@model Vidly.ViewModel.RandomMovieViewModel
@Html.Partial("NavBar", Model.movie)
Last updated
Was this helpful?