Bin folder

Collapse
X
 
  • Time
  • Show
Clear All
new posts
  • smgrisw
    New Member
    • Feb 2009
    • 2

    Bin folder

    All,

    I have a web application hosted on a third party ISP. There is a bin directory that contains 3rd party controls. I have created a new application that uses newer version of the same control. It appears that when the page is loading it goes to the main bin folder to look for the DLL. This causes an error because the DLL in the main bin folder is older. Is there any way to have the page look for the DLL in another folder?

    Regards,

    Scott
  • PRR
    Recognized Expert Contributor
    • Dec 2007
    • 750

    #2
    Originally posted by smgrisw
    All,

    I have a web application hosted on a third party ISP. There is a bin directory that contains 3rd party controls. I have created a new application that uses newer version of the same control. It appears that when the page is loading it goes to the main bin folder to look for the DLL. This causes an error because the DLL in the main bin folder is older. Is there any way to have the page look for the DLL in another folder?

    Regards,

    Scott
    In your webconfig change probing privatePath
    Code:
     <probing privatePath="foldername"/>

    Comment

    Working...