ASP.NET ListItem Enabled 屬性
ASP.NET ListItem Enabled 屬性

定義和用法
Enabled 屬性用于設(shè)置或返回是否默認地啟用 ListItem。
如果該屬性設(shè)置為 TRUE,則 ListItem 默認地被啟用,否則為 FALSE。默認是 TRUE。
語法
<asp:ListItem Enabled="True|False" runat="server" />
實例
下面的實例禁用了 ListBox 控件中的一個 ListItem:
<form runat="server">
<asp:ListBox runat="server">
<asp:ListItem Text="Item1" Enabled="False"/>
<asp:ListItem Text="Item2" />
</asp:ListBox>
</form>
<asp:ListBox runat="server">
<asp:ListItem Text="Item1" Enabled="False"/>
<asp:ListItem Text="Item2" />
</asp:ListBox>
</form>
演示實例 ?

相關(guān)文章
- ASP.NET Web Pages 類參考手冊
- ASP.NET MVC HTML 幫助器
- ASP.NET XML 數(shù)據(jù)綁定
- ASP.NET DropDownList 控件
- WebSecurity IsCurrentUser 方法
- WebSecurity RequireUser 方法
- HTML InputCheckbox
- HTML InputImage
- ASP.NET HTML 控件 DataList
- ASP.NET HTML 控件 Validationsummary
- ASP.NET HTML 控件 Hashtable DropDownList
- C# 實例 Else If 條件
- C# 實例 Switch 條件
- htmlbutton
- ASP.NET Calendar DayHeaderStyle 屬性
- ASP.NET Calendar NextPrevStyle 屬性
- ASP.NET Calendar SelectedDayStyle 屬性
- ASP.NET Calendar ShowTitle 屬性
- ASP.NET Calendar TitleFormat 屬性
- ASP.NET Calendar TodayDayStyle 屬性