<
form
id
="form1"
runat
="server"
>
<
div
align
="left"
>
<
fieldset
style
="width: 350px; height: 150px"
>
<
p
>
选择颜色
</
p
>
<
table
cellpadding
="0"
cellspacing
="0"
border
="0"
>
<
tr
>
<
td
>
</
td
>
<
td
>
<
asp:DropDownList
ID
="ddlFirst"
runat
="server"
>
<
asp:ListItem
Value
=""
Text
="--- 请选择 ---"
></
asp:ListItem
>
<
asp:ListItem
Value
="1"
Text
="红色"
></
asp:ListItem
>
<
asp:ListItem
Value
="2"
Text
="黄色"
></
asp:ListItem
>
<
asp:ListItem
Value
="3"
Text
="蓝色"
></
asp:ListItem
>
</
asp:DropDownList
>
</
td
>
</
tr
>
<
tr
>
<
td
colspan
="2"
>
</
td
>
</
tr
>
<
tr
>
<
td
>
</
td
>
<
td
>
<
asp:DropDownList
ID
="ddlSecond"
runat
="server"
>
<
asp:ListItem
Value
=""
Text
="--- 请选择 ---"
></
asp:ListItem
>
</
asp:DropDownList
>
</
td
>
</
tr
>
</
table
>
</
fieldset
>
</
div
>
</
form
>