Sign In| Join
Get Help:Ask a Question in our Forums|Report a Bug|More Help Resources
Member
2 Points
1 Post
Nov 17, 2008 10:25 PM|LINK
I was getting that message, and I isolated the problem down to the first lne in my .ascx file:
<%
the Inherits="" class name did not exactly match the name of the code-behind class.
Check to make sure all your class names match in the master page, usercontrols and other pages. That might help.
asp.net answer
dgkahn
Member
2 Points
1 Post
Re: external component has thrown an exception" Compiler Error Message: The compiler failed with ...
Nov 17, 2008 10:25 PM|LINK
I was getting that message, and I isolated the problem down to the first lne in my .ascx file:
<%
@ Control Language="C#" AutoEventWireup="true" CodeFile="ContactInfo.ascx.cs" Inherits="ContactInfo" %>the Inherits="" class name did not exactly match the name of the code-behind class.
Check to make sure all your class names match in the master page, usercontrols and other pages. That might help.
asp.net answer