Step 1: In Iron Speed Designer, switch to Layout Editor. Select a record panel or table panel.
Step 2: Select any desired cell, copy the following HTML code into the Cell Editor.
<input type="file" id="inputFile" name="inputFile" runat="server"/>
Step 3: Drag and drop a Button (Themed) from the Toolbox to a desired cell.
Remember the name of the button because you need to know this to select a value
for the button control variable in the Code Customization Wizard.
Step 5: Set the button text and tool tip text
properties for the button in Page Properties window.
Step 6: Go to the Attributes tab in the button's Page Properties
and add "PostBack" pass-through attribute with value "True". Add this
attribute only if the button is inside a table or record control whose
SmoothPanelUpdate pass-through attribute is true.
Step 7: Build the application.
Step 8: Use this wizard to add code that handles
the OnClick event for the custom button.
Step 9: Build and run the application.
|