ASP.NET SelectedIndex 属性

定义和用法

SelectedIndex 属性用于获取或设置 DropDownList 中被选项目的索引号。

实例

下面的例子输出了被选项目的文本:

  1. <script runat="Server">
  2. Sub GetName(obj As Object, e As EventArgs)
  3. lbl.Text = ddList.SelectedItem.Text
  4. End Sub
  5. </script>
  6.  
  7. <form runat="Server">
  8. Select a name from the list:
  9. <asp:DropDownList id="ddList" runat="Server">
  10. <asp:ListItem Text="Peter" />
  11.  
  12. <asp:ListItem Text="Lois" />
  13. <asp:ListItem Text="Cleveland" />
  14. <asp:ListItem Text="Quagmire" />
  15.  
  16. <asp:ListItem Text="Joe" />
  17. </asp:DropDownList>
  18.  
  19. <asp:Button Text="Select"
  20. OnClick="GetName" Runat="Server" />
  21.  
  22. <br />
  23. Name is:
  24. <asp:Label id="lbl" Runat="Server"/>
  25. </form>

实例

  • 从 DropDownList 中的一个项目取得文本