473,761 Members | 10,276 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Weird error with ASP.NET 2.0

I always see this error when accesing any page in website I compiled in ASP.NET

Compiler Error Message: CS0433: The type 'Customer_Credi tWizard' exists in
both 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5021 5\Temporary ASP.NET
Files\creditjoc key\34369bc7\74 5233b3\assembly \dl3\798e68b8\4 0272035_89b9c50 1\App_Web_50yiu _rb.DLL'
and 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5021 5\Temporary ASP.NET
Files\creditjoc key\34369bc7\74 5233b3\assembly \dl3\fde2c518\9 61dd6bd_8ab9c50 1\App_Web_-hw74-i5.DLL'

Source Error:

Line 104:
Line 105: [System.Runtime. CompilerService s.CompilerGloba lScopeAttribute ()]
Line 106: public class CreditWizard_as px : global::Custome r_CreditWizard,
System.Web.Sess ionState.IRequi resSessionState {
Line 107:
Line 108: private static bool @__initialized;
Nov 19 '05 #1
2 1990
Sounds like you have two classes with the same name contained in one
namespace?

Are you sure the error only pops up in 2.0?
Have you tried 1.1?

Hope this is helpful?
Cheers,
Adam


"Albert Pascual" <Al***********@ discussions.mic rosoft.com> wrote in message
news:87******** *************** ***********@mic rosoft.com...
I always see this error when accesing any page in website I compiled in
ASP.NET

Compiler Error Message: CS0433: The type 'Customer_Credi tWizard' exists in
both 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5021 5\Temporary ASP.NET
Files\creditjoc key\34369bc7\74 5233b3\assembly \dl3\798e68b8\4 0272035_89b9c50 1\App_Web_50yiu _rb.DLL'
and 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5021 5\Temporary ASP.NET
Files\creditjoc key\34369bc7\74 5233b3\assembly \dl3\fde2c518\9 61dd6bd_8ab9c50 1\App_Web_-hw74-i5.DLL'

Source Error:

Line 104:
Line 105:
[System.Runtime. CompilerService s.CompilerGloba lScopeAttribute ()]
Line 106: public class CreditWizard_as px :
global::Custome r_CreditWizard,
System.Web.Sess ionState.IRequi resSessionState {
Line 107:
Line 108: private static bool @__initialized;

Nov 19 '05 #2
Have you found any solutions to this error? I seem to be having the same
exact error and cant find a way around it.

"Albert Pascual" wrote:
I always see this error when accesing any page in website I compiled in ASP.NET

Compiler Error Message: CS0433: The type 'Customer_Credi tWizard' exists in
both 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5021 5\Temporary ASP.NET
Files\creditjoc key\34369bc7\74 5233b3\assembly \dl3\798e68b8\4 0272035_89b9c50 1\App_Web_50yiu _rb.DLL'
and 'c:\WINDOWS\Mic rosoft.NET\Fram ework\v2.0.5021 5\Temporary ASP.NET
Files\creditjoc key\34369bc7\74 5233b3\assembly \dl3\fde2c518\9 61dd6bd_8ab9c50 1\App_Web_-hw74-i5.DLL'

Source Error:

Line 104:
Line 105: [System.Runtime. CompilerService s.CompilerGloba lScopeAttribute ()]
Line 106: public class CreditWizard_as px : global::Custome r_CreditWizard,
System.Web.Sess ionState.IRequi resSessionState {
Line 107:
Line 108: private static bool @__initialized;

Nov 20 '05 #3

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

3
2079
by: redneck_kiwi | last post by:
Hi all: I have a really weird problem. I am developing a customer catalog system for my company and as such have delved into sessions for authentication and access levels. So far, I have managed to get a working system just about finished. I am building an interface for our customer service folks to use to manage registered customers and am seeing some weird behavior.
5
14630
by: NanQuan | last post by:
I'm hoping someone can help me solve this error since I am at a total loss here. Usually I don't bother posting on any forums or groups on the internet and prefer to solve stuff myself but this is a total mistery. I have a function inside an ASP page as a result of which I get the following error message: Microsoft VBScript compilation error '800a03ea'
1
2786
by: amit | last post by:
I am trying to compile the sample program genwin.sqc, using nsqlprep which is used to precompile embedded sql in C. I am getting weird errors and that is because windows.h is included in the genwin.sqc file. I am using Setting the lib and include path: set INCLUDE=C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\include;C:\Program Files\Microsoft SQL Server\80\Tools\DevTools\Samples\esqlc;%include%
2
2535
by: Kathy Houtami | last post by:
Hi there I've been encountered with weird compile error using Access 97. The error message is "Member or data member is not found" and it highlighted a line of code that has not be changed and has been compiled with no error for days. The code was Me.CircuitQualifier.Requery
6
1549
by: gh0st54 | last post by:
Hi I have a weird javascript error that only happens on my live server when i open the page http://www.imrated.co.uk/reg.aspx i get the error 'Problems with this page ... blablabla Line : 3 Char : 1 Error:Syntax error
0
2064
by: Alan Silver | last post by:
Hello, I have two weird problems here. I have a master page file that works absolutely fine. When I load it up in VWD, I get a couple of weird (to me) errors. First, I get the error "Unrecognized tag prefix or device filter 'asp'" on the third line shown below... <head runat="server">
0
1831
by: P Pulkkinen | last post by:
Dear all, sorry, i know this code is far little too long to debug here, but there is really annoying logical error. If someone debugs this, I really offer warm virtual handshake. What this code SHOULD do: - read new (=updated) licensetext from file $license_path then - read and modify recursively all files from $current_dir, replacing old
7
2013
by: dtschoepe | last post by:
Hi, I am working on a project for school and I am trying to get my head around something weird. I have a function setup which is used to get an input from stdin and a piece of memory is created on the heap using malloc. This input is then run through a regex and another test. The result is passed back as a char pointer to the program for further processing The first time I call this function, it performs normally. However,
6
1875
by: =?Utf-8?B?amVmZmVyeQ==?= | last post by:
i need help with a combo box and this same code works on my first tab with a combo box. The error or problem i have is this code causes an index out of range error when i run it on my second combo box: (errored code) Select Case ComboBox2.text Case Is ="Execute Program" 'code to execute program here Case Is ="Other Command that executes code at a certain time" ' code below the same as above except that it works But not my first(this...
4
2624
by: d3vkit | last post by:
I recently had a friend pass along some web work for me; a simple update. I for some reason decided I would do some overhauling of the page (he had been doing straight html and I figured some php would make things MUCH more manageable, especially with the pictures). So, I set to work doing what I normally do for all my site, create the index page with a switch to stick different content in the main part of the page depending on variables passed...
0
9531
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
10115
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9957
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
9905
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
9775
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
0
8780
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5229
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
3
3456
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2752
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.