DropDownList.SelectedIndex 속성
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
DropDownList 컨트롤에서 선택한 항목의 인덱스를 가져오거나 설정합니다.
public:
virtual property int SelectedIndex { int get(); void set(int value); };
public override int SelectedIndex { get; set; }
member this.SelectedIndex : int with get, set
Public Overrides Property SelectedIndex As Integer
속성 값
DropDownList 컨트롤에서 선택한 항목의 인덱스입니다. 기본값은 0이며 목록에서 첫째 항목을 선택합니다.
예제
다음 코드 예제에서는 컨트롤에서 SelectedIndex DropDownList 선택한 항목을 확인 하는 속성을 사용 하는 방법을 보여 줍니다.
<%@ Page Language="C#" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script runat="server" >
void Selection_Change(Object sender, EventArgs e)
{
// Set the title format based on the value selected from the
// DropDownList control. The SelectedIndex property can be used
// to determine an enumeration value. Simply cast the value to
// the appropriate enumeration type. Note that the value might
// need to be adjusted if the enumeration type is not zero-based.
Calendar1.TitleFormat = (TitleFormat)ModeList.SelectedIndex;
}
</script>
<head runat="server">
<title> DropDownList SelectedIndex Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> DropDownList SelectedIndex Example </h3>
Choose the title format.
<br /><br />
<asp:Calendar id="Calendar1"
ShowGridLines="True"
ShowTitle="True"
runat="server"/>
<br /><br />
<table cellpadding="5">
<tr>
<td>
Format:
</td>
</tr>
<tr>
<td>
<asp:DropDownList id="ModeList"
AutoPostBack="True"
OnSelectedIndexChanged="Selection_Change"
runat="server">
<asp:ListItem> Month </asp:ListItem>
<asp:ListItem Selected="True"> MonthYear </asp:ListItem>
</asp:DropDownList>
</td>
</tr>
</table>
</form>
</body>
</html>
<%@ Page Language="VB" AutoEventWireup="True" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" >
<script runat="server" >
Sub Selection_Change(sender As Object, e As EventArgs)
' Set the title format based on the value selected from the
' DropDownList control. The SelectedIndex property can be used
' to determine an enumeration value. Simply cast the value to
' the appropriate enumeration type. Note that the value might
' need to be adjusted if the enumeration type is not zero-based.
Calendar1.TitleFormat = CType(ModeList.SelectedIndex, TitleFormat)
End Sub
</script>
<head runat="server">
<title> DropDownList SelectedIndex Example </title>
</head>
<body>
<form id="form1" runat="server">
<h3> DropDownList SelectedIndex Example </h3>
Choose the title format.
<br /><br />
<asp:Calendar id="Calendar1"
ShowGridLines="True"
ShowTitle="True"
runat="server"/>
<br /><br />
<table cellpadding="5">
<tr>
<td>
Format:
</td>
</tr>
<tr>
<td>
<asp:DropDownList id="ModeList"
AutoPostBack="True"
OnSelectedIndexChanged="Selection_Change"
runat="server">
<asp:ListItem> Month </asp:ListItem>
<asp:ListItem Selected="True"> MonthYear </asp:ListItem>
</asp:DropDownList>
</td>
</tr>
</table>
</form>
</body>
</html>
설명
SelectedIndex 속성을 사용 하 여 프로그래밍 방식으로 지정 하거나 컨트롤에서 선택한 항목의 인덱스 DropDownList 확인 합니다. 컨트롤에서 DropDownList 항목이 항상 선택됩니다. 목록의 모든 항목에서 선택 영역을 동시에 지울 수는 없습니다.
참고
컨트롤의 항목 DropDownList 에 대한 인덱스는 0부터 시작하는 것입니다.