|
Step 1: In Iron Speed Designer, switch to Design Mode then select a table control.
Step 2: Highlight any desired empty cell at the bottom of the table control.
Step 3: Add the following HTML code to the cell using Cell Editor.
<tr>
<asp:datagrid id="myDataGrid" OnItemDataBound= "MyItemDataBound" runat="server">
<HeaderStyle BackColor = "#336699" ForeColor = "#ffffff" Font-Bold = "true" />
<AlternatingItemStyle BackColor = "#eeeeee" />
</asp:datagrid>
</tr>
Step 4: Use this wizard to add code customization.
Step 5: Build and run the application.
|