|
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.
<asp:GridView ID="MyGrid" runat="server" OnPageIndexChanging="gridView_PageIndexChanging" bordercolor="Silver" borderstyle="Solid" borderwidth="1px" cellpadding="5" cellspacing="1" cssclass="ttc" forecolor="Silver" horizontalalign="Left" allowpaging="True" pageindex="1">
<PagerSettings LastPageImageUrl="~/Images/arrow_end.gif" PreviousPageImageUrl="~/Images/arrow_left.gif" FirstPageImageUrl="~/Images/arrow_beg.gif" Position="Top" NextPageImageUrl="~/Images/arrow_right.gif" Mode="NextPreviousFirstLast"></PagerSettings>
<RowStyle CssClass="ttc"></RowStyle>
<SelectedRowStyle CssClass="ttcs"></SelectedRowStyle>
<PagerStyle CssClass="ttc"></PagerStyle>
<HeaderStyle CssClass="thc"></HeaderStyle>
</asp:GridView>
Step 3: Use this wizard to add code customization.
Step 4: In added code customization, specify the name and location of your stored procedure and its parameter list (if any).
Step 5: Build and run the application.
|