未检测到 dll
我创建了一些 .net dll 作为我的 Web 应用程序的组件。当我通过 VS10 添加引用时,它们进入了 BIN 文件夹。但是当我将它们上传到我的网络主机上时,它似乎没有检测到它们(显示未找到错误)。我还需要做什么才能让它们被发现?提前致谢。
I created some .net dlls as component to my web application. When I added the reference through VS10, they got into BIN folder. But when I uploaded them on my web host, It doesn't seem to detect them (shows not found error). What additional do I need to do to make them detected? Thanks in advance.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您收到的确切错误是什么?您上传到服务器的新 DLL 可能依赖于服务器上不存在的 DLL(所需的 DLL 可能位于您的 GAC 中,这就是它在您的计算机上运行的原因)。
What is the exact error you are getting? It could be that the new DLLs you uploaded to your server have a dependency on a DLL that doesn't exist on the server (that needed DLL could be in your GAC which is why it works on your machine).