I have the following code and everytime i try to compile, I get the error “/Website/InsightLogo.ascx has a circular reference!” I am assigned to fix up somebody els’ code, so please excuse any odd mistakes
<%@ Control Language="vb" AutoEventWireup="false" CodeBehind="InsightLogo.ascx.vb" Inherits="eDox.InsightLogo" %>
<%@ Register Src="InsightLogo.ascx" TagName="InsightLogo" TagPrefix="uc1" %>
<img src="Images/InsightLogo.bmp" alt="Company Logo"/>
Your control is trying to register itself.
You should remove the following line :