如何将 dll 导入到在网络服务器上运行的 ASP.NET Web 应用程序中
我在 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要将 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 ofapp_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