ASP.NET SelectedIndex Property
คำนิยามและวิธีใช้
ตัวแปร SelectedIndex ใช้เพื่อได้รับหรือตั้งค่าดัชนีของโครงการที่เลือกใน DropDownList
ตัวอย่าง
ตัวอย่างด้านล่างนี้จะพิมพ์ข้อความของโครงการที่เลือก
<script runat="Server"> Sub GetName(obj As Object, e As EventArgs) lbl.Text = ddList.SelectedItem.Text End Sub </script> <form runat="Server"> เลือกชื่อจากรายการ: <asp:DropDownList id="ddList" runat="Server"> <asp:ListItem Text="Peter" /> <asp:ListItem Text="Lois" /> <asp:ListItem Text="Cleveland" /> <asp:ListItem Text="Quagmire" /> <asp:ListItem Text="Joe" /> </asp:DropDownList> <asp:Button Text="Select" OnClick="GetName" Runat="Server" /> <br /> Name is: <asp:Label id="lbl" Runat="Server"/> </form>
ตัวอย่าง
- เอาข้อความมาจากโครงการหนึ่งใน DropDownList