In my controller, I have and inline If statement:
ViewBag.NameSortParam = If(String.IsNullOrEmpty(sortOrder), "Name desc", "")
In my view, I can't seem to use inline if:
@Code
If(True, true, true)
End code
It says, "If must end with matching End If." Why can't I use an inline if here? Thanks.