探测不起作用 Asp.net 2.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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
抱歉,探测仅适用于您的应用程序的子目录,而不适用于树中“上方”的目录。
您需要将 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).