<xmod:Register>

The Register tag enables you to use third-party controls in your XMod Pro templates.

Syntax

<xmod:Register
    TagPrefix="string"
    Namespace="string"
    Assembly="string"
/> 
 

Remarks

Back to top

Example

<xmod:Register TagPrefix="ctb" Namespace="Acme.CoolTools.XMPTools" Assembly="Acme.CoolTools" />
<xmod:template>
  ...
  <HeaderTemplate>

    <table>
  </HeaderTemplate>
  <ItemTemplate>

      <tr>
        <td>
           <ctb:CoolFader makeitcool="true" fadeduration="5">
             [[Headline]]
           </ctb:CoolFader>

        </td>
      </tr>
  </ItemTemplate>
  <FooterTemplate>

    </table>
  </FooterTemplate>
</xmod:template>
Back to top