Hi, I want to use assembly of one application into another. There is one assembly in one application "EventCalendar" which is registered as
<%@ Register TagPrefix="ec" Namespace="ControlCalender" Assembly="EventCalendar" %>
and this is used as control as
<ec:EventCalendar runat="server" ID="eventscalendar" DataSourceID="sqldatasource1" BorderWidth="0" DayField="starttime" ShowTitle="true" CssClass="eventmonthtable">
<%-- more code --%>
</ec:EventCalendar>
Now i want to apply same functionality in another application. how should i use this assembly in another application? Thanks in advance.