You can easily register the Wijmo Open for Juice UI assembly and attach an extender control to an existing control in your project all via the source markup. To do so, follow these steps:
When you install Wijmo Open for Juice UI to your project, the Web.config file automatically adds references to the C1.Web.Wijmo.Open.Juice.4 assembly and adds TagPrefix="cc1" for each of the extender controls, so you do not need to manually register the assembly in the source markup at the top of the .aspx page. If you manually add a reference to the assembly, you must register the assembly at the top of the source page, similar to the following:
Copy Code
|
|
---|---|
<%@ Register Assembly="C1.Web.Wijmo.Open.Juice.4" Namespace="C1.Web.Wijmo.Juice.WijAccordion" TagPrefix="cc1" %> |
Copy Code
|
|
---|---|
<cc1:WijAccordion ID="Panel1_WijAccordion" runat="server" TargetControlID="Panel1"> </cc1:WijAccordion> |