在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"選項設置為默認選擇。