You can add a namespace to web.config, and then you won't have to worry about that later.
Inside your web.config you should see something like this:
<namespaces> <add namespace="System.Web.Mvc"/> <add namespace="System.Web.Mvc.Ajax"/> <add namespace="System.Web.Mvc.Html"/> <add namespace="System.Web.Routing"/> <add namespace="System.Linq"/> <add namespace="System.Collections.Generic"/> </namespaces>
Just add a line with your namespace.
If you do not want helpers to be imported globally, each directory can have its own web.config. Unless specifically installed, those "sub" web.configs inherit settings from higher web.configs. If you go this route, warn, some settings can only be set at the application level. This can get confusing quickly.
source share