使用 VB.net 时,辅助模块是否必须位于 App_Code 中才能让 MVC 识别

发布于 2024-07-08 03:57:54 字数 172 浏览 8 评论 0原文

当我的 APS.NET MVC VB 应用程序的 App_Code 目录中有我的 Helpers 时,我可以输入 <%=HTML.ImageUrl("myImage.gif")%>;

如果我将其移动到另一个文件夹,则会出现错误。 我假设我可以导入应用程序命名空间以使其正常工作,但这有必要吗?

When I have my Helpers in the App_Code 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?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

自由范儿 2024-07-15 03:57:54

您是否将您使用的命名空间放入 web.config 中?

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

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

<pages>
     <namespaces>
          <add namespace="Your.Name.Space" />
     </namespaces>
</pages>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文