2016-08-03 88 views
-1

我正在使用此方法更改DLL文件夾。但是,此方法不允許訪問父目錄。ASP.NET DLL文件夾更改

如果你有幫助,我會很高興。謝謝。

Web.config文件:

</configuration> 
<runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
     <probing privatePath="bin;C:\Windows\SysWOW64" /> 
    </assemblyBinding> 
    </runtime> 
</configuration> 

回答

0

我單獨添加的文件解決我的問題。謝謝。

解決方案:

的Web.config

<configuration> 
<runtime> 
    <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1"> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Web.Mvc" culture="neutral" publicKeyToken="31bf3856ad364e35"/> 
     <codeBase version="5.2.3.0" href="FILE://C:/bin2/subbin/System.Web.Mvc.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Web.Http" culture="neutral" publicKeyToken="31bf3856ad364e35"/> 
     <codeBase version="5.0.0.0" href="FILE://C:/bin2/subbin/System.Web.Http.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Web.Http.WebHost" culture="neutral" publicKeyToken="31bf3856ad364e35"/> 
     <codeBase version="5.0.0.0" href="FILE://C:/bin2/subbin/System.Web.Http.WebHost.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Net.Http.Formatting" culture="neutral" publicKeyToken="31bf3856ad364e35"/> 
     <codeBase version="5.2.3.0" href="FILE://C:/bin2/subbin/System.Net.Http.Formatting.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="Newtonsoft.Json" culture="neutral" publicKeyToken="30ad4fe6b2a6aeed"/> 
     <codeBase version="4.5.0.0" href="FILE://C:/bin2/subbin/Newtonsoft.Json.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Design" culture="neutral" publicKeyToken="B03F5F7F11D50A3A"/> 
     <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Design.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Windows.Forms" culture="neutral" publicKeyToken="B77A5C561934E089"/> 
     <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Windows.Forms.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Web.Entity" culture="neutral" publicKeyToken="B77A5C561934E089"/> 
     <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Web.Entity.dll"/> 
     </dependentAssembly> 
     <dependentAssembly> 
     <assemblyIdentity name="System.Data.Linq" culture="neutral" publicKeyToken="B77A5C561934E089"/> 
     <codeBase version="4.0.0.0" href="FILE://C:/bin2/subbin/System.Data.Linq.dll"/> 
     </dependentAssembly> 
    </assemblyBinding> 
    </runtime> 

</configuration>