阅读量:1
在ASP.NET中,可以通过设置DropDownList控件的SelectedValue属性来选择默认值。
例如:
<asp:DropDownList ID="ddlColors" runat="server"> <asp:ListItem Text="Red" Value="1" /> <asp:ListItem Text="Blue" Value="2" /> <asp:ListItem Text="Green" Value="3" /> </asp:DropDownList>
然后,可以通过代码设置SelectedValue属性:
ddlColors.SelectedValue = "2"; // 设置默认选项为"Blue"
这将会在页面加载时将"Blue"选项设置为默认选择。