Click here to Skip to main content
15,901,283 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
See more:
how to rectify the errors?

Error	1	Element 'ListPicker1' is not a known element. This can occur if there is a compilation error in the Web site.	
Error	2	/WebSite6/ListPicker.ascx has a circular reference!	/
Posted
Updated 1-Dec-11 19:47pm
v3
Comments
[no name] 2-Dec-11 1:47am    
EDIT: added "pre" tag
[no name] 2-Dec-11 1:48am    
please debug your codes and share us part where you are getting the latter errors.
Sergey Alexandrovich Kryukov 2-Dec-11 1:48am    
Rectify what? To fix a bug one needs a source of it.
--SA

You need to clear circular reference in your solution.

To explain circular reference in short, you have assembly as follows:
1. A.dll referencing B.dll
2. B.dll referencing C.dll
3. C.dll referencing A.dll

This can happen with any number of projects / assemblies not just 3.

Here is an approach for clearing circular reference:How to get rid of circular references in C#
[^]
 
Share this answer
 
At your aspx page add this

<%@ Register TagPrefix="LP" TagName="TitleBar" Src="ListPicker.ascx" %>
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900