Click here to Skip to main content
15,886,873 members
Please Sign up or sign in to vote.
1.00/5 (1 vote)
I'm trying to build an event calendar following this:

Event Calendar [ ASP.NET 2.0 / C# ][^]

but one of the tags used "ecalendar" it says it's an unrecognized tag... is this because it's old? Is there anyway to make this work?
Posted
Comments
Kornfeld Eliyahu Peter 27-Jan-15 12:29pm    
Do you mean this part: <ECalendar:
varmartins 27-Jan-15 12:34pm    
yes

1 solution

Ecalendar - in the sample you are using - is a prefix tag registered at the top of the page:
HTML
<![CDATA[<%@ Register TagPrefix="ECalendar" Namespace="ExtendedControls" Assembly="EventCalendar" %>]]>

It is not a tag and can be set as you wish, all the purpose of it is to create a shorthand reference to a namespace...
Please read here: https://msdn.microsoft.com/en-us/library/vstudio/c76dd5k1(v=vs.100).aspx[^]
 
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