We have been having a random issue with our live website. We're not sure what exactly is causing the issue. We tried clearing the temporary files but the issue happened again. We even killed the IIS app_pool so that it wouldn't be holding any of them in memory. As soon as we put the site back up we get this error again. Any help is appreciated.

Compiler Error Message: CS0433: The type 'ASP.modules_dataentry_provider_orderhistory_ascx' exists in both 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\44d35bd0\b13314db\App_Web_orderhistory.ascx.8106afdb.spsukqu_.dll' and 'c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\44d35bd0\b13314db\App_Web_xg5e4m3x.dll'

link|improve this question

I had the same issue before, but when I build the application for several times it was fixed. – huMpty duMpty Dec 9 '11 at 15:42
Have you tried cleaning out the bin directory and redeploying the contents of bin from your local build to the server bin directory again? It looks like you are using a website project, so you want to make sure an old version of a page dll isn't present. – dash Dec 9 '11 at 15:43
1  
this usually happen during deploy when someone keep a safety copy of the old dll under the bin folder... – Felice Pollano Dec 9 '11 at 15:46
We had to actually delete the entire website folder, not just the bin. The caching issue was happening with a user control. Not exactly sure how the mechanism causing the issue works. All I know is that completely wiping everything out and re-deploying the code fixed our issues. – Alex Ford Dec 9 '11 at 16:26
feedback

5 Answers

up vote 4 down vote accepted

There is not a lot to work with but I think that your deployment of your website went wrong somewhere in the line. You probably only did a overwrite of the folder which could leave old assemblies there. Try to do a clean deploy by first deleting the old assemblies.

link|improve this answer
This was exactly it. The build script we use to push the site to our testing environment actually completely deletes the existing directory before pushing the new code out. However, the script that pushes the site to our live environment was NOT deleting the existing directory, thus the caching issues. Thanks for the help! – Alex Ford Dec 9 '11 at 16:24
feedback

just delete

c:\Windows\Microsoft.NET\Framework\v4.0.30319\Temporary ASP.NET Files\root\44d35bd0\

directory and build again

ASP.NET store compiled dll's into that temp folder, and I guess it create twice in your case

Hope this helps

link|improve this answer
We already tried this. We cleared all the contents of the "Temporary ASP.NET Files". As soon as we started the site again it happened again. – Alex Ford Dec 9 '11 at 15:45
feedback

I ran into this same issue. Usually refreshing the page a few times would clear it out, but ultimately this advice helped out.

Set the compilation configuration to batch = false:

<configuration ...>
  <system.web>
    <compilation ... batch="false"/>
      ...

Give it a try and see if it helps.

link|improve this answer
feedback

A similar error has happened to me with website projects.

As each page's code behind gets compiled into a separate dll, then you move that type to a different page (or even rename the original parent page) sometimes, the remote dll the old type was defined in hangs around. Clearing out the bin directory and redeploying the dll files has solved this for me in the past. Also make sure you don't have any old aspx/ascx referring to this in the website that you no longer have in your project.

link|improve this answer
feedback

I have had this issue before, and deleting the Debug & Release folders within the obj directory of my project fixed this for me.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.