VirtualUserForm2.ascx
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
- <%@ Register Assembly="Itenso.WebUserForms.Controls" Namespace="Itenso.WebUserForms.Controls"
- TagPrefix="cc1" %>
- <%@ Control Language="C#" AutoEventWireup="true" %>
- <table width="100%">
- <tr>
- <td width="20%">
- <asp:Label ID="Label1" runat="server" Text="ListBox:"></asp:Label>
- </td>
- <td>
- <cc1:ListBox ID="ListBox1" runat="server" FieldName="ListBoxField">
- <asp:ListItem>Item1</asp:ListItem>
- <asp:ListItem>Item2</asp:ListItem>
- <asp:ListItem>Item3</asp:ListItem>
- </cc1:ListBox>
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="Label3" runat="server" Text="RadioButtonList:"></asp:Label>
- </td>
- <td>
- <cc1:RadioButtonList ID="RadioButtonList1" runat="server" FieldName="RadioButtonField"
- RepeatDirection="Horizontal">
- <asp:ListItem>Option1</asp:ListItem>
- <asp:ListItem>Option2</asp:ListItem>
- <asp:ListItem>Option 3</asp:ListItem>
- </cc1:RadioButtonList>
- </td>
- </tr>
- <tr>
- <td>
- <asp:Label ID="Label4" runat="server" Text="CheckBoxList:"></asp:Label>
- </td>
- <td>
- <cc1:CheckBoxList ID="CheckBoxList1" runat="server" FieldName="CkeckBoxField" RepeatDirection="Horizontal">
- <asp:ListItem>Option1</asp:ListItem>
- <asp:ListItem>Option2</asp:ListItem>
- <asp:ListItem>Option3</asp:ListItem>
- </cc1:CheckBoxList>
- </td>
- </tr>
- </table>
- <cc1:UserFormHeader ID="UserFormHeader1" runat="server" Type="RuntimeDemo" Name="VirtualUserForm" />