探测不起作用 Asp.net 2.0

发布于 2024-08-24 12:30:12 字数 312 浏览 6 评论 0原文

在我的应用程序(ASP.Net2.0)中,需要对dll进行分组。所以我使用探测和修改了web.config如下

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
     <probing privatePath="bin;../../../Runtime/Satellite"/>
  </assemblyBinding>
</runtime>

它在Asp.net2.0中不起作用。请帮我

In my application(ASP.Net2.0),need to group the dlls. So that I used probing ande modified the web.config as follows

<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1">
     <probing privatePath="bin;../../../Runtime/Satellite"/>
  </assemblyBinding>
</runtime>

It is not working in Asp.net2.0. Please help me

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

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

发布评论

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

评论(1

南渊 2024-08-31 12:30:12

抱歉,探测仅适用于您的应用程序的子目录,而不适用于树中“上方”的目录。

您需要将 DLL 分组到您的应用程序目录下(或使用 GAC)。

Sorry, probing only works for subdirectories of your app, never in directories "above" you in the tree.

You need to group the DLLs under your app directory (or use the GAC).

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