473,396 Members | 2,082 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,396 software developers and data experts.

ascx is ambiguous in the namespace ASP

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry
Jun 27 '08 #1
11 4431
Are you sure you don't have the same ascx twice?. You should be able to
overcome this, by in @Control directive of the UV, giving it
ClassName="name" where name is something different than the name of your uc
:-)
--
Teemu Keiski
AspInsider, ASP.NET MVP
http://blogs.aspadvice.com/joteke
http://teemukeiski.net

"Jerry C" <je*****@nospam.nospamwrote in message
news:C6**********************************@microsof t.com...
>I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

Jun 27 '08 #2
Hi Jerry,

This error is usually reporting that there are some pages or usercontrols
that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error
>
BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry
Jun 27 '08 #3
Thank you for the replys.

This error occours only once in a while. If I had duplicate files in the
directory it would occur every time the site compiles. Also the file name is
xxx_ascx The underbar is not used anywhere in my code for a name of a control
or class. this seems to be a framework error. Also If there were duplicate
names in my code I would have to remove them to get the code to compile. To
fix this error I have to remove the temp files and then it will compile. So I
do not think this is a error caused by duplicate file names. Also this
problem only occurs on one of my servers. The other server used for coding
and testing work OK. Remember this server can run for weeks before this
occurs. The link talks about problems that ocur every time the code is
compiled this is not the case here. Deleting the temp files clears the error
and the code compiles and runs OK.

Thank you
--
Jerry
"Steven Cheng [MSFT]" wrote:
Hi Jerry,

This error is usually reporting that there are some pages or usercontrols
that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

Jun 27 '08 #4
sorry forgot to put in the page;

http://channel9.msdn.com/ShowPost.aspx?PostID=160949

Thank you
--
Jerry
"Steven Cheng [MSFT]" wrote:
Hi Jerry,

This error is usually reporting that there are some pages or usercontrols
that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

Jun 27 '08 #5
I tried the suggestion to put in a ClassName= in the <%@ Control section of
the ascx file. This seemed to work. But when I deployed it then the next ascx
file in the app had the error. so after several rounds of this I just put the
ClassName in every ascx in the app and this worked.

So how is it I can have about a 100 duplicate ascx and aspx files in the
app and don't know it and not beable to find them. and why is only a problem
in one server of 5 and why has this just now become a problem after three
years ??? The control section and the class name of the code behind is
created by the development environment if it needs the CLassName= then why
does it not put it in. I think there is something else here and I think I
need to know that is is. I don't want this to happen at the customers sites.

Thank you,
--
Jerry
"Steven Cheng [MSFT]" wrote:
Hi Jerry,

This error is usually reporting that there are some pages or usercontrols
that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700
X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

Jun 27 '08 #6

"Jerry C" <je*****@nospam.nospamwrote in message
news:7E**********************************@microsof t.com...
>I tried the suggestion to put in a ClassName= in the <%@ Control section
of
the ascx file. This seemed to work. But when I deployed it then the next
ascx
file in the app had the error. so after several rounds of this I just put
the
ClassName in every ascx in the app and this worked.

So how is it I can have about a 100 duplicate ascx and aspx files in the
app and don't know it and not beable to find them. and why is only a
problem
in one server of 5 and why has this just now become a problem after three
years ??? The control section and the class name of the code behind is
created by the development environment if it needs the CLassName= then why
does it not put it in. I think there is something else here and I think I
need to know that is is. I don't want this to happen at the customers
sites.

Thank you,
--
Jerry
"Steven Cheng [MSFT]" wrote:
>Hi Jerry,

This error is usually reporting that there are some pages or usercontrols
that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol
and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in
the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you.
Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
>From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error
>
BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

I have exactly the same problem. There are no identical names, nothing even
close. It only happens when I change an ascx file. It will happen if I use
F5. If I then use the Start Debugging arrow on the toolbar it will start
and the next time not do this. I think it must have something to do with
the temp files.

LS

Jun 27 '08 #7
Lloyd,

See my last post. Put in the ClassName="classname" in the <%@ Control
section of the ascx file and see if that works. This has been a problem for a
while and now it seems to be getting worse must be some sort of update from
microsoft.

--
Jerry
"Lloyd Sheen" wrote:
>
"Jerry C" <je*****@nospam.nospamwrote in message
news:7E**********************************@microsof t.com...
I tried the suggestion to put in a ClassName= in the <%@ Control section
of
the ascx file. This seemed to work. But when I deployed it then the next
ascx
file in the app had the error. so after several rounds of this I just put
the
ClassName in every ascx in the app and this worked.

So how is it I can have about a 100 duplicate ascx and aspx files in the
app and don't know it and not beable to find them. and why is only a
problem
in one server of 5 and why has this just now become a problem after three
years ??? The control section and the class name of the code behind is
created by the development environment if it needs the CLassName= then why
does it not put it in. I think there is something else here and I think I
need to know that is is. I don't want this to happen at the customers
sites.

Thank you,
--
Jerry
"Steven Cheng [MSFT]" wrote:
Hi Jerry,

This error is usually reporting that there are some pages or usercontrols
that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol
and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in
the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you.
Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach the
most efficient resolution. The offering is not appropriate for situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are best
handled working with a dedicated Microsoft Support Engineer by contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
==================================================
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700

X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry



I have exactly the same problem. There are no identical names, nothing even
close. It only happens when I change an ascx file. It will happen if I use
F5. If I then use the Start Debugging arrow on the toolbar it will start
and the next time not do this. I think it must have something to do with
the temp files.

LS

Jun 27 '08 #8

"Jerry C" <je*****@nospam.nospamwrote in message
news:78**********************************@microsof t.com...
Lloyd,

See my last post. Put in the ClassName="classname" in the <%@ Control
section of the ascx file and see if that works. This has been a problem
for a
while and now it seems to be getting worse must be some sort of update
from
microsoft.

--
Jerry
"Lloyd Sheen" wrote:
>>
"Jerry C" <je*****@nospam.nospamwrote in message
news:7E**********************************@microso ft.com...
>I tried the suggestion to put in a ClassName= in the <%@ Control
section
of
the ascx file. This seemed to work. But when I deployed it then the
next
ascx
file in the app had the error. so after several rounds of this I just
put
the
ClassName in every ascx in the app and this worked.

So how is it I can have about a 100 duplicate ascx and aspx files in
the
app and don't know it and not beable to find them. and why is only a
problem
in one server of 5 and why has this just now become a problem after
three
years ??? The control section and the class name of the code behind is
created by the development environment if it needs the CLassName= then
why
does it not put it in. I think there is something else here and I think
I
need to know that is is. I don't want this to happen at the customers
sites.

Thank you,
--
Jerry
"Steven Cheng [MSFT]" wrote:

Hi Jerry,

This error is usually reporting that there are some pages or
usercontrols
that have the same name in the generated assemblies since ASP.NET use
a
dynamic compilation model. For example, you may contains a usercontrol
and
a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in
the
error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
suggestions about how we can improve the support we provide to you.
Please
feel free to let my manager know what you think of the level of
service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach
the
most efficient resolution. The offering is not appropriate for
situations
that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are
best
handled working with a dedicated Microsoft Support Engineer by
contacting
Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
--------------------
From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700

X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting
the
error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

I have exactly the same problem. There are no identical names, nothing
even
close. It only happens when I change an ascx file. It will happen if I
use
F5. If I then use the Start Debugging arrow on the toolbar it will start
and the next time not do this. I think it must have something to do with
the temp files.

LS

thanks I will check that out.

LS

Jun 27 '08 #9
Hi Jerry,

As Teemu has mentioned, the duplicated name here may also be caused by two
page/user control in differetn folder hierarchy that have the same file
name. ASP.NET use dynamic compilation and will batch compile multiple
page/ascx controls by default. When you haven't explicitly specify a
ClassName( in the directive), if will generate dynamic class depend on file
name. And if runtime try batch compiling two of such controls or pages,
potential naming confliction occurs. The reason why the problem ocassionaly
occurs is that batch compile is not always using the same strategy to
group page or usercontrol together, for most time, the two problem items
may not be compiled into the same assmebly, then no error will occur.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.
--------------------
>From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
References: <C6**********************************@microsoft.co m>
<tB**************@TK2MSFTNGHUB02.phx.gbl>
>Subject: RE: ascx is ambiguous in the namespace ASP
Date: Mon, 21 Apr 2008 10:33:00 -0700
>
I tried the suggestion to put in a ClassName= in the <%@ Control section
of
>the ascx file. This seemed to work. But when I deployed it then the next
ascx
>file in the app had the error. so after several rounds of this I just put
the
>ClassName in every ascx in the app and this worked.

So how is it I can have about a 100 duplicate ascx and aspx files in the
app and don't know it and not beable to find them. and why is only a
problem
>in one server of 5 and why has this just now become a problem after three
years ??? The control section and the class name of the code behind is
created by the development environment if it needs the CLassName= then why
does it not put it in. I think there is something else here and I think I
need to know that is is. I don't want this to happen at the customers
sites.
>
Thank you,
--
Jerry
"Steven Cheng [MSFT]" wrote:
>Hi Jerry,

This error is usually reporting that there are some pages or
usercontrols
>that have the same name in the generated assemblies since ASP.NET use a
dynamic compilation model. For example, you may contains a usercontrol
and
>a web page and they have the same name.

http://forums.codecharge.com/posts.php?post_id=55779

As Teemu suggested, you can try renaming the ascx control mentioned in
the
>error message to see whether that can eliminate the conflicting.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments
and
>suggestions about how we can improve the support we provide to you.
Please
>feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

================================================= =
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
>ications.

Note: The MSDN Managed Newsgroup support offering is for non-urgent
issues
>where an initial response from the community or a Microsoft Support
Engineer within 1 business day is acceptable. Please note that each
follow
>up response may take approximately 2 business days as the support
professional working with you may need further investigation to reach
the
>most efficient resolution. The offering is not appropriate for
situations
>that require urgent, real-time or phone-based interactions or complex
project analysis and dump analysis issues. Issues of this nature are
best
>handled working with a dedicated Microsoft Support Engineer by
contacting
>Microsoft Customer Support Services (CSS) at
http://msdn.microsoft.com/subscripti...t/default.aspx.
================================================= =
This posting is provided "AS IS" with no warranties, and confers no
rights.
>>

--------------------
>From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
Subject: ascx is ambiguous in the namespace ASP
Date: Fri, 18 Apr 2008 11:11:02 -0700
>X-Tomcat-NG: microsoft.public.dotnet.framework.aspnet

I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error
>
BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry

Jun 27 '08 #10
The problem is back:
This time the ambiguous is now xxxxxx without the _ascx.

I found another post:
http://personalinertia.blogspot.com/...-compiler.html

Notice the word BUG. I hope this works.

Thank you
--
Jerry
"Jerry C" wrote:
I have a machine Windows Server 2003 using IIS 6.0 and I am getting the error

BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Temp orary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry
Jun 27 '08 #11
Hi Jerry,

Is it possible to repro the problem by a simple web project with page and
usercontrol? If so, I would suggest you submit this problem to our connect
site:

http://connect.microsoft.com/feedbac...spx?SiteID=210

the dev engineer will try repro it if it is a definite problem.

Sincerely,

Steven Cheng

Microsoft MSDN Online Support Lead
Delighting our customers is our #1 priority. We welcome your comments and
suggestions about how we can improve the support we provide to you. Please
feel free to let my manager know what you think of the level of service
provided. You can send feedback directly to my manager at:
ms****@microsoft.com.

==================================================
Get notification to my posts through email? Please refer to
http://msdn.microsoft.com/subscripti...ult.aspx#notif
ications.

==================================================
This posting is provided "AS IS" with no warranties, and confers no rights.

--------------------
>From: =?Utf-8?B?SmVycnkgQw==?= <je*****@nospam.nospam>
References: <C6**********************************@microsoft.co m>
Subject: RE: ascx is ambiguous in the namespace ASP
Date: Thu, 24 Apr 2008 09:43:00 -0700
>
The problem is back:
This time the ambiguous is now xxxxxx without the _ascx.

I found another post:
http://personalinertia.blogspot.com/...-compiler.html

Notice the word BUG. I hope this works.

Thank you
--
Jerry
"Jerry C" wrote:
>I have a machine Windows Server 2003 using IIS 6.0 and I am getting the
error
>>
BC30560 prjob_ascx is ambiguous in the namespace ASP

I found a fix. Deleting all the files in the
C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Tem porary ASP.NET Files
Directory fixes the problem.

Is there a way to prevent this problem.

Thank you
--
Jerry
Jun 27 '08 #12

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

Similar topics

0
by: dh | last post by:
As a simple example, I can't seem to be able to reference a label called "lblOutput" that exists in my test.aspx page from within a User control, TestControl.ascx. I am stumped. Any help is...
3
by: Lee Gillie | last post by:
I have a VS6 project which I brought into VS .NET, and all has been building fine. Then I upgraded to VS 2003 and I have one source which will no longer compile. Any clues? Compiling......
4
by: Rob Meade | last post by:
Hi all, I have just put together our organisations 'template' for our web applications and have created 7 .ascx files which when dropped into my template file work perfectly...however, I have a...
4
by: Johnny van Cadsand | last post by:
Hi, I get the following errors when trying to build my solution: 'Exception' is ambiguous in the namespace 'System' 'EventArgs' is ambiguous in the namespace 'System' 'IDisposable' is ambiguous...
0
by: damiensawyer | last post by:
Hello all, I'm very new to all of this. I have a theme and a skin (the standard ones). I have a standard master page which is holding a custom ascx which has a treeview in it. Can someone...
9
by: Prasad | last post by:
HI, I am a beginner in VC++.. I am trying to write a Win32 console application in visual studio.. I am using following header files.. #include <STRING> using namespace std; #include...
3
by: Arpan | last post by:
The following code exists in a class file named "Users.vb": Namespace Users Public Class UserDetails Public FirstName As String Public LastName As String Public UserName As String Public...
1
by: rn5a | last post by:
Consider the following code in a VB class file: Namespace LoginUserFetchDB Public Class ZForZebra : Inherits SoapHeader Public UserName As String Public Password As String End Class Public...
3
by: Steven Nagy | last post by:
Hi all, ASP.NET : Framework 2.0 - C# A recent addition to my code generater will create GridView's and ObjectDataSource's in a control (ASCX). So the code gen creates an ascx, ascx.cs,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
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,...
0
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can...
0
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...
0
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...

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.