views:

74

answers:

1

When I have my Helpers in the AppCode Directory of my APS.NET MVC VB Application I can type <%=HTML.ImageUrl("myImage.gif")%>

If I move it to another folder I get Errors. I assume I can import the Application Namespace to get it to work but is that Necessary?

A: 

Do you have the namespace your using put into the web.config?

<pages>
     <namespaces>
          <add namespace="Your.Name.Space" />
     </namespaces>
</pages>
Jeff Sheldon