I am trying to do the answer to this:
How to use ternary operator in razor (specifically on HTML attributes)?
With a Html.ActionLink; something like this:
@(ViewData["page"] == "Page1" ? "Page1" : Html.ActionLink("Page 1", "Page1", "Index"))
Is this possible?