"External component has thrown an exception" - ASP.NET Bug?

S

SH

There seems to be an issue with .NET 3.5/Visual Studio 2008 (Team System).

After convincing my company to create our latest project in .NET 3.5, this
is kind of reflecting bad on me.

Problem:

Solution will NOT compile. Error is simply: "External component has thrown
an exception". NO other details.

What started the problem?:

I created a content page and put it in a subdirectory. If I remove this
content page the problem dissapears.

Workaround:

If I right click on the content page -> click build page -> then compile the
solution then this works fine. Obviously this is not desirable, especially
with automated deployments.



Win2k3, MS VS.NET 2008 TFS, .NET 3.5, Simple ASP.NET Web Application.


ANY help would be appreciated.
 
E

Eliyahu Goldin

If you google for "External component has thrown an exception" (don't skip
the quotes) you will find quite a number of discussions on this problem. You
need either clean up the project by deleting all temporary fields, removing
the last installed component etc. or check carefully your web.config,
project references, control registration directives to see if everything is
there and is consistent. Do both: cleanup and checkup.


--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net
 
S

SH

Thanks for the reply. I've done many a search for "external comp....".

* What do you mean by deleting temporary fields? Do you mean files?

The one thing that I thought it might have been is the control references,
since I did create a user control, but then delete it after. There is no
trace of this user control in the master page of content pages. Where else
could metadata around this be lurking?

Eliyahu Goldin said:
If you google for "External component has thrown an exception" (don't skip
the quotes) you will find quite a number of discussions on this problem. You
need either clean up the project by deleting all temporary fields, removing
the last installed component etc. or check carefully your web.config,
project references, control registration directives to see if everything is
there and is consistent. Do both: cleanup and checkup.


--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


SH said:
There seems to be an issue with .NET 3.5/Visual Studio 2008 (Team System).

After convincing my company to create our latest project in .NET 3.5, this
is kind of reflecting bad on me.

Problem:

Solution will NOT compile. Error is simply: "External component has thrown
an exception". NO other details.

What started the problem?:

I created a content page and put it in a subdirectory. If I remove this
content page the problem dissapears.

Workaround:

If I right click on the content page -> click build page -> then compile
the
solution then this works fine. Obviously this is not desirable, especially
with automated deployments.



Win2k3, MS VS.NET 2008 TFS, .NET 3.5, Simple ASP.NET Web Application.


ANY help would be appreciated.
 
S

SH

I think I've fixed it.

I created a new ASCX (just add new item from VS 2008 TFS). The control was
empty, completely default ASCX. anyway, I deleted it and the problem went
away. I definately put this down to a bug in the VS 2008 IDE more than
anything else.

I hope it doesn't come back! Thanks for your help

SH.

SH said:
Thanks for the reply. I've done many a search for "external comp....".

* What do you mean by deleting temporary fields? Do you mean files?

The one thing that I thought it might have been is the control references,
since I did create a user control, but then delete it after. There is no
trace of this user control in the master page of content pages. Where else
could metadata around this be lurking?

Eliyahu Goldin said:
If you google for "External component has thrown an exception" (don't skip
the quotes) you will find quite a number of discussions on this problem. You
need either clean up the project by deleting all temporary fields, removing
the last installed component etc. or check carefully your web.config,
project references, control registration directives to see if everything is
there and is consistent. Do both: cleanup and checkup.


--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


SH said:
There seems to be an issue with .NET 3.5/Visual Studio 2008 (Team System).

After convincing my company to create our latest project in .NET 3.5, this
is kind of reflecting bad on me.

Problem:

Solution will NOT compile. Error is simply: "External component has thrown
an exception". NO other details.

What started the problem?:

I created a content page and put it in a subdirectory. If I remove this
content page the problem dissapears.

Workaround:

If I right click on the content page -> click build page -> then compile
the
solution then this works fine. Obviously this is not desirable, especially
with automated deployments.



Win2k3, MS VS.NET 2008 TFS, .NET 3.5, Simple ASP.NET Web Application.


ANY help would be appreciated.
 
E

Eliyahu Goldin

Good.

Yes, I meant temporary files, sorry.

VS 2008 is a vary large product. It is easy to understand that optimizing
performance while providing tremendously rich functionality may cause
integrity issues. Cleaning up is the major troubleshooting technique here.

--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


SH said:
I think I've fixed it.

I created a new ASCX (just add new item from VS 2008 TFS). The control was
empty, completely default ASCX. anyway, I deleted it and the problem went
away. I definately put this down to a bug in the VS 2008 IDE more than
anything else.

I hope it doesn't come back! Thanks for your help

SH.

SH said:
Thanks for the reply. I've done many a search for "external comp....".

* What do you mean by deleting temporary fields? Do you mean files?

The one thing that I thought it might have been is the control
references,
since I did create a user control, but then delete it after. There is no
trace of this user control in the master page of content pages. Where
else
could metadata around this be lurking?

Eliyahu Goldin said:
If you google for "External component has thrown an exception" (don't
skip
the quotes) you will find quite a number of discussions on this
problem. You
need either clean up the project by deleting all temporary fields,
removing
the last installed component etc. or check carefully your web.config,
project references, control registration directives to see if
everything is
there and is consistent. Do both: cleanup and checkup.


--
Eliyahu Goldin,
Software Developer
Microsoft MVP [ASP.NET]
http://msmvps.com/blogs/egoldin
http://usableasp.net


There seems to be an issue with .NET 3.5/Visual Studio 2008 (Team
System).

After convincing my company to create our latest project in .NET 3.5,
this
is kind of reflecting bad on me.

Problem:

Solution will NOT compile. Error is simply: "External component has
thrown
an exception". NO other details.

What started the problem?:

I created a content page and put it in a subdirectory. If I remove
this
content page the problem dissapears.

Workaround:

If I right click on the content page -> click build page -> then
compile
the
solution then this works fine. Obviously this is not desirable,
especially
with automated deployments.



Win2k3, MS VS.NET 2008 TFS, .NET 3.5, Simple ASP.NET Web Application.


ANY help would be appreciated.
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,756
Messages
2,569,535
Members
45,008
Latest member
obedient dusk

Latest Threads

Top