如何在 httpHandler 中包含另一个文件?
我正在创建一个网络处理程序并希望包含另一个文件中的类。我该怎么做?
I'm creating a webhandler and want to include classes from another file. How do I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将代码从
.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 thevb
file in yourashx
.将这些项目作为引用包含在具有 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.