Presentation Layer (ASPX) Control Tags

Iron Speed Designer generates server controls tags in the generated ASPX and ASCX files.  The server-side functionality of the application is exposed to the Presentation Layer ASPX pages as a set of XML tags.  The Presentation Layer control tags may also be used in design themes, HTML layout page files, and in any other context where they are passed through to the final generated ASPX page.

Syntax

The syntax of the Presentation Layer control tags is very straightforward:

<NameSpace:TAGNAME

     id="IDNAME"

     runat="server"

     …

     >

</NameSpace:TAGNAME>

Note:

Example tags for various types of buttons:

Tag Type

Example

Standard HTML form submit button

<input type="submit" id="b" ... />

Standard .NET HTML control

<input type=”submit” id=”b” runat=”server” … />

Standard .NET web control

<asp:Button runat="server" id="b" ... />

Application base classes custom control

<BaseClasses:Button runat="server" id="b" ... />

OMS application user control
(Application name is “OMS”)

<OMS:Button runat="server" id="b" ... />

 

See Also

Generated Web Pages