So I’m importing the namespace like so in my master page:
<%@ Import Namespace="System.Web.Mvc.Html" %>
Using the helper like this:
<% Html.ActionLink("Home", "Home"); %>
But it’s yelling at me:
The name “Html” does not exist in the
current context…
What am I doing wrong?
Try