ASP.NET ListItem Selected 属性
ListItem 控件
定义和用法
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>
<asp:ListBox runat="server">
<asp:ListItem Text="Item1" Selected="True"/>
<asp:ListItem Text="Item2" />
</asp:ListBox>
</form>
演示实例 »
ListItem 控件
点我分享笔记