Click here to Skip to main content
15,900,362 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
i m facing this plm pls help me
Posted

Don't use this . It will not work when deployed on live server
 
Share this answer
 
Is it looking for the wrong version or specific version ???

Id so place a assemblyBinding in your Web.Config

This is an oracle example


XML
<runtime>
  <assemblyBinding xmlns="urn:schemas-microsoft-com:asm.v1" >
   <dependentAssembly>
        <assemblyIdentity name="Oracle.DataAccess"
      publicKeyToken="89b483f429c47342"/>
          <bindingRedirect oldVersion="2.112.1.0" newVersion="1.102.4.0"/>
      </dependentAssembly>
    </assemblyBinding>
</runtime>


or you can specify an assembly for the assembly in your

http://msdn.microsoft.com/en-us/library/bfyb45k1.aspx[^]

OR...if you are building it in VS as a reference then you have to right-click the assembly and hit copy always when building.
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900