I can\'t get intellisense for my own html helpers. My CustomHtmlHelpers.cs
looks like this:
using System.Web.Mvc;
using System.Text;
using Syste
I ran into this today as well. Sometimes just closing the Razor view's window in Visual Studio and re-opening it will do the trick without having to do a full Visual Studio restart.
I found that if it still doesn't work, you may need to go to the properties of the custom class and change the build action from "content" to "compile". That resolved it for me.
I found that i was adding the reference to the wrong web.config. It's not the main config but the web.config in the views directory...