Why does the following code renders my child action:
<div class='h-l'>
@if (ViewBag.Hide)
{
@Html.Action(MVC.City.GetCitiesList().AddRouteValue("makeBig", false));
}
</div>
but if I delete @ before @Html.Action
, nothing is rendered?