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.
You could use
IIf
, you don't need to clutter your code with@Code
sections:You can do an inline if in vb.net like this:
Try
You could use something like this: