Example: Adding Third-Party Controls to a Page

You can incorporate third-party controls into any Iron Speed Designer web page by adding two lines into the page directives via the Page Directives dialog (Property Sheet, Page section…).

Step 1:  In the Page Directives dialog, place this @Register tag in the page prologue before the DOCTYPE statement, for example:

<%@ Register TagPrefix="UltraWebChart" Namespace="Infragistics.WebUI.UltraWebChart" Assembly="Infragistics.WebUI.UltraWebChart, Culture=neutral" %>

TagPrefix can be any name.

Namespace is the namespace of the third part control.  For example, for the Microsoft.NET TextBox control, the namespace is, System.Web.UI.WebControls

Assembly is the dll file name without extension.

Step 2:  Add the third-party control to your page in the appropriate cell via the Cell Editor, e.g.:

<UltraWebChart:UltraChart runat="server" id="id37"></ UltraWebChart:UltraChart>

The form of the tag is typically:

<TAGPREFIX:CLASSNAME id="YourID" runat="server"></TAGPREFIX:CLASSNAME >

In the example above, the TAGPREFIX is UltraWebChart and the CLASSNAME is UltraChart.

Step 3:  Build and run your application.

See Also

Customizing Web Page Layout

Customizing Page Contents with the HTML Editor