如何将 dll 导入到在网络服务器上运行的 ASP.NET Web 应用程序中

发布于 2024-12-07 12:06:37 字数 154 浏览 0 评论 0原文

我在 VS 2010 中创建了一个 dll。我将其放入网络服务器上的 app_code 文件夹中 然后我通过尝试使用 imports GetWebPageData 来访问它,

该 dll 位于 bin/debug 下的 vs 项目中(如果这意味着什么)

I have a dll created in VS 2010. i put it into the app_code folder on the webserver
and then i accesses it by trying to use imports GetWebPageData

the dll is in the vs project under bin/debug if that means anything

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

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

发布评论

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

评论(1

毁梦 2024-12-14 12:06:37

您需要将 DLL 复制到 Web 服务器的 bin(而不是 app_code)文件夹,甚至更好 - 在 Visual Studio 中单击“在网站上添加引用”,然后添加您的 DLL 作为参考。
您可能还应该阅读更多有关 ASP.NET 基础知识的文章,

这里有一篇文章详细解释了 ASP.NET 编译:
http://www.west-wind.com/presentations/AspNetCompilation/AspNetCompilation.asp

You need to copy the DLL to the bin (instead of app_code) folder of the web server, and even better - click on Add Reference on the Web Site in Visual Studio and add your DLL as a reference.
And you should also probably read some more about ASP.NET fundamentals

Here is an article that explains ASP.NET compilation in detail:
http://www.west-wind.com/presentations/AspNetCompilation/AspNetCompilation.asp

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