<td> <label>Activity </label> </td> <td> <asp:UpdatePanel ID="Update_Panel1" runat="server"> <contenttemplate> <asp:DropDownList ID="ddl_Activity1" runat="server" AutoPostBack="True" class="w100" onselectedindexchanged="ddl_Activity1_SelectedIndexChanged"> <asp:ListItem Text="Create Permanent Water Holes" Value="1"> <asp:ListItem Text="Improve Water Storage" Value="2"> </contenttemplate> <triggers> <asp:AsyncPostBackTrigger ControlID="ddl_SubActivity1" EventName="SelectedIndexChanged"/> </triggers> </td> <td> <asp:label ID="lbl_SubActivity1" runat="server">Sub Activity </td> <td> <asp:UpdatePanel ID="Update_Panel2" runat="server"> <contenttemplate> <asp:DropDownList ID="ddl_SubActivity1" runat="server" class="w100" AutoPostBack="True"> <asp:ListItem Text="Desilting" Value="1"> <asp:ListItem Text="Deepening" Value="2"> <asp:ListItem Text="Repairing" Value="3"> </contenttemplate> <triggers> <asp:AsyncPostBackTrigger ControlID="ddl_SubActivity1" EventName="SelectedIndexChanged"/> </triggers> </td>
width
<asp:DropDownList ID="ddl_SubActivity1" runat="server" Width="100px" class="w100" AutoPostBack="True">
var
This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)