Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

When I run a webapp from Visual Studio 2008 SP1 using the internal web server (not IIS) I receive the above mentioned error.

The full error (source file Default.aspx.cs):

Compiler Error Message: CS0433: The type 'WebApplication3.Site1' exists in both 'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\aa563bcf\59deedc0\App_Web_site1.master.cdcab7d2.muczzy9v.dll' and 'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\aa563bcf\59deedc0\assembly\dl3\44c3a3cf\80dd34ed_6968ca01\WebApplication3.DLL'

The preceding full warning:

Warning: CS0436: The type 'WebApplication3._Default' in 'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\aa563bcf\59deedc0\App_Web_default.aspx.cdcab7d2._tlkwdos.0.cs' conflicts with the imported type 'WebApplication3._Default' in 'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\aa563bcf\59deedc0\assembly\dl3\44c3a3cf\e096e61c_6568ca01\WebApplication3.DLL'. Using the type defined in 'c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\aa563bcf\59deedc0\App_Web_default.aspx.cdcab7d2._tlkwdos.0.cs'.

Source of warning points to an intermediate file App_Web_default.aspx.cdcab7d2._tlkwdos.0.cs:

Line 162:    
Line 163:    [System.Runtime.CompilerServices.CompilerGlobalScopeAttribute()]
Line 164:    public class default_aspx : global::WebApplication3._Default, System.Web.IHttpHandler {
Line 165:        
Line 166:        private static bool @__initialized;

and my question: where does this come from?

The webapp (not website!) has one Default.aspx and one Site1.Master, no dependencies. They're almost empty, with an asp:Label on the page. Previously, this webapp worked fine. When I remove any references in Default.aspx.cs to the master, all goes well. The master has some code only.

It's actually one of many little fire-and-forget test webapps, so I couldn't care less. But I hadn't seen this before and now I'm curious of what to do, other then copying code into a new project (cleaning solution doesn't help).

Note: I've read this post and some others, they don't apply.

share|improve this question
PS: my main thought is: something screwed the temp dir, and my main way out here is to simply remove the temp dir by hand and rebuild. Not tried yet (would remove the "evidence"), in case somebody has a deeper insight here. – Abel Nov 18 '09 at 16:37

6 Answers

up vote 14 down vote accepted

Shut down w3svc and delete everything from c:\Windows\Microsoft.NET\Framework\v2.0.50727\Temporary ASP.NET Files\root\

added

on Windows 7

c:\Users\{username}\AppData\Local\Temp\Temporary ASP.NET Files\root\

share|improve this answer
1  
Yeah, that'll probably work (see my own comment above), but I hoped for a tad more insight in where this came from and what to do to prevent it (or even, make it reproducible). I'm not against solving brute force, but before doing so, I like to understand what's going on. – Abel Nov 18 '09 at 16:40
This has happened to me in the past. I believe it's a problem with VS where it doesn't clean up after a debugging session or before starting a new one. Last time this happened to me was with VS2005 a couple of years back. – King Julian Nov 18 '09 at 17:18
1  
Accepted this as answer because it is a solution. However, it does not explain "why". If I find a better solution or a and actual reason, I'll update Lyman's answer or add my own. – Abel Jan 14 '10 at 16:18

Theory

When this issue is not caused by a bug in the application (e.g., duplicate class name):

This issue appears to present after a change is made to the application's project that results in a new build (e.g., code/reference/resource change). The issue appears to lie within the output of this new build: for various reasons Visual Studio is not replacing the entire contents of your application's obj/bin folders. This results in at least some of the contents of your application's bin folder being out of date.

When said issue occurs, clearing out the "Temporary ASP.NET Files" folder, alone, does not solve the problem. It cannot solve the problem, because the stale contents of your application's bin folder are copied back into the "Temporary ASP.NET Files" folder the next time your application is accessed, causing the issue to persist. The key is to remove all existing files and force Visual Studio to rebuild every object, so the next time your application is accessed the new bin files will be copied into the "Temporary ASP.NET Files" folder.

Solution

  1. Close Visual Studio
  2. Perform an iisreset
  3. Delete all the folders and files within the "Temporary ASP.NET Files" folder (the path is referenced in the error message)
  4. Delete the offending application's "obj" and "bin" folders
  5. Restart Visual Studio and open the solution
  6. Perform a "Clean Solution" followed by a "Rebuild Solution"

Explanation

  • Steps 1-2: remove resource locks from the folders/files we need to delete.
  • Steps 3-4: remove all of the old build files
  • Steps 5-6: create new versions of the build files
share|improve this answer
This post clearly augments the original accepted answer. Good explanation and clear steps, thanks! – Abel Apr 3 at 7:09

Look at the Inherits tag of all your aspx pages and master pages. Chances are there are two partial classes that have the same name. Change one and recompile.

Here is some more info:

http://blogs.msdn.com/b/carloc/archive/2007/06/12/compiler-error-message-cs0433-in-asp-net-2-0.aspx

share|improve this answer
Good point. The code of back at the day has been rewritten so I can't check it would've helped, but for anyone that has this error, this could definitely be a great pointer, thanks for sharing. – Abel Aug 10 '11 at 23:24

This May Happens when Same class Name is specified in multiple .aspx.cs files for eg 2 pages are created with different file name but by mistake have same class Name.

public partial class Test1: System.Web.UI.Page

public partial class Test1: System.Web.UI.Page

while building the app gives a warning but the applicaiton Runs, but while publishing the application downt work.

share|improve this answer
Tx for looking into this. But in the case of your example, you use partial class, which is actually a common way (the only way) to split one class over several files, in which case you must use the same name. – Abel Jun 18 '10 at 10:37

Removing the class files from the App_Code folder, and placing them directly under the website, solved this issue for me.

share|improve this answer
2  
I'm afraid that's not really an option. Placing the dlls directly under the root is considered by many a security risk (App_Code or bin are special and inaccessible through IIS/ASP.NET, while any dll in the root can simply be downloaded and .NET assemblies are easily disassembled). – Abel Jan 5 '10 at 22:51

This may also happen if you have duplicate TagPrefix in your ASPX file.

This would cause this error...

<%@ Register Src="Control1.ascx" TagName="Control1" TagPrefix="uc1" %>

<%@ Register Src="Control2.ascx" TagName="Control2" TagPrefix="uc1" %>

You can fix this by simply changing the 2nd "uc1" to "uc2"

Fixed...

<%@ Register Src="Control1.ascx" TagName="Control1" TagPrefix="uc1" %>

<%@ Register Src="Control2.ascx" TagName="Control2" TagPrefix="uc2" %>
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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