<%@ Control Language="VB" AutoEventWireup="false" CodeFile="Control1.ascx.vb" Inherits="DesktopModules_MultiViewSample_DynamicControls_Control1" %>
<table border="2" width="90%">
<tr>
<td>
<table>
<tr>
<td style="width: 100px">
</td>
<td style="width: 100px">
</td>
</tr>
<tr>
<td style="width: 100px">
Name</td>
<td style="width: 100px">
<asp:TextBox ID="Name_Field" runat="server"></asp:TextBox></td>
</tr>
<tr>
<td style="width: 100px; height: 24px">
Module</td>
<td style="width: 100px; height: 24px">
<asp:DropDownList ID="Module_field" runat="server" DataTextField="FriendlyName" DataValueField="FriendlyName">
</asp:DropDownList></td>
</tr>
<tr>
<td style="width: 100px">
Level</td>
<td style="width: 100px">
<asp:ListBox ID="Level_Field" runat="server">
<asp:ListItem>Level 1</asp:ListItem>
<asp:ListItem>Level 2</asp:ListItem>
<asp:ListItem>Level 3</asp:ListItem>
<asp:ListItem>Level 4</asp:ListItem>
</asp:ListBox></td>
</tr>
<tr>
<td style="width: 100px">
Active</td>
<td style="width: 100px">
<asp:CheckBox ID="Active_Field" runat="server" Checked="True" /></td>
</tr>
<tr>
<td style="width: 100px">
Routing</td>
<td style="width: 100px">
<asp:CheckBoxList ID="Routing_Field" runat="server">
<asp:ListItem>Dept 1</asp:ListItem>
<asp:ListItem>Dept 2</asp:ListItem>
<asp:ListItem>Dept 3</asp:ListItem>
<asp:ListItem>Dept 4</asp:ListItem>
</asp:CheckBoxList></td>
</tr>
<tr>
<td style="width: 100px">
Processed</td>
<td style="width: 100px">
<asp:RadioButton ID="Processed_Field" runat="server" Checked="True" /></td>
</tr>
<tr>
<td style="width: 100px">
Time</td>
<td style="width: 100px" nowrap="noWrap">
<asp:RadioButtonList ID="Time_Field" runat="server" RepeatDirection="Horizontal" RepeatLayout="Flow">
<asp:ListItem>0-8</asp:ListItem>
<asp:ListItem Selected="True">8-12</asp:ListItem>
<asp:ListItem>12-3</asp:ListItem>
<asp:ListItem>3-6</asp:ListItem>
<asp:ListItem>6-12</asp:ListItem>
</asp:RadioButtonList></td>
</tr>
</table>
</td>
</tr>
</table>