Hi,
I'm creating a navigation bar and trying to use Razor's Html.Actionlink helper tag, like so:
<li>@Html.ActionLink("Example Page", "About", "Routes")</li>
however, this outputs a URL like:
<li><a href="">Example Page</a></li>
As you see... the href is blank... why is this?