如何在 httpHandler 中包含另一个文件?

发布于 2024-11-13 11:11:11 字数 40 浏览 2 评论 0原文

我正在创建一个网络处理程序并希望包含另一个文件中的类。我该怎么做?

I'm creating a webhandler and want to include classes from another file. How do I do this?

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

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

发布评论

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

评论(2

胡渣熟男 2024-11-20 11:11:11

将代码从 .aspx 文件移动到 .vb 文件。如果 .vb 文件与 .ashx 文件不在同一项目中,则将该文件编译为程序集,并在 所在项目中引用该程序集.ashx 存在。然后,您可以在 ashx 中实例化 vb 文件中的类。

Move the code from the .aspx file to a .vb file. If the .vb file is not in the same project as the .ashx file, then compile the file into an assembly and reference the assembly in the project where the .ashx exists. Then you can instantiate the classes in the vb file in your ashx.

挽清梦 2024-11-20 11:11:11

将这些项目作为引用包含在具有 HTTPHandler 的项目中,然后在代码中引用这些类;确保您定义了适当的 using 命名空间定义。

如果这没有帮助,请详细说明问题。

HTH。

Include those projects as references in the project that has the HTTPHandler, and then refer to those classes in code; make sure you have the appropriate using namespace definitions defined.

If this doesn't help, please elaborate on the problem.

HTH.

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