?
本文檔使用 PHP中文網(wǎng)手冊 發(fā)布
Selected 屬性用于設置或返回是否默認地選定 ListItem。
如果該屬性被設置為 TRUE,則 ListItem 被默認地選定,否則為 FALSE。默認是 FALSE。
<asp:ListItem?Selected="True|False"?runat="server"?/>
下面的實例設置了 ListBox 控件中被選定的 ListItem:
<form runat="server">
<asp:ListBox runat="server">
<asp:ListItem Text="Item1" Selected="True"/>
<asp:ListItem Text="Item2" />
</asp:ListBox>
</form>