최신 웹 개발 튜토리얼
 

ASP.NET웹 양식 - SortedList 개체


SortedList 개체는 ArrayList를 객체와 해시 테이블 객체 모두의 기능을 결합합니다.


예

SortedList RadiobuttonList 1

SortedList DropDownList로


SortedList 개체

SortedList 개체는 키 / 값 쌍의 항목이 포함되어 있습니다.

SortedList 개체가 자동으로 알파벳이나 숫자 순서로 항목을 정렬합니다.

항목은 함께 SortedList에 추가됩니다 Add() 방법.

SortedList는 함께 최종 크기로 크기가 정해질 수 TrimToSize() 방법.

다음 코드는 SortedList라는 이름의 mycountries를 만들고 네 가지 요소가 추가됩니다

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New SortedList
  mycountries.Add("N","Norway")
  mycountries.Add("S","Sweden")
  mycountries.Add("F","France")
  mycountries.Add("I","Italy")
end if
end sub
</script>

데이터 바인딩

SortedList 개체는 자동으로 다음 컨트롤에 텍스트와 값을 생성 할 수 있습니다 :

  • ASP : RadioButtonList
  • ASP : CheckBoxList
  • ASP : DropDownList로
  • ASP : 목록 상자

.aspx 페이지의 경우 a RadioButtonList 컨트롤 데이터를 결합하기 위해, 제 (하여 ListItem 요소 임의 ASP)없이 RadioButtonList 컨트롤 만들기 :

<html>
<body>

<form runat="server">
<asp:RadioButtonList id="rb" runat="server" AutoPostBack="True" />
</form>

</body>
</html>

그런 다음 목록을 빌드 스크립트를 추가 :

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New SortedList
  mycountries.Add("N","Norway")
  mycountries.Add("S","Sweden")
  mycountries.Add("F","France")
  mycountries.Add("I","Italy")
  rb.DataSource=mycountries
  rb.DataValueField="Key"
  rb.DataTextField="Value"
  rb.DataBind()
end if
end sub
</script>

<html>
<body>

<form runat="server">
<asp:RadioButtonList id="rb" runat="server" AutoPostBack="True" />
</form>

</body>
</html>

그런 다음 우리는 사용자가 RadioButtonList 컨트롤의 항목을 클릭 할 때 서브 루틴이 실행에 추가. 라디오 버튼을 클릭하면 텍스트가 레이블에 나타납니다 :

<script runat="server">
sub Page_Load
if Not Page.IsPostBack then
  dim mycountries=New SortedList
  mycountries.Add("N","Norway")
  mycountries.Add("S","Sweden")
  mycountries.Add("F","France")
  mycountries.Add("I","Italy")
  rb.DataSource=mycountries
  rb.DataValueField="Key"
  rb.DataTextField="Value"
  rb.DataBind()
end if
end sub

sub displayMessage(s as Object,e As EventArgs)
lbl1.text="Your favorite country is: " & rb.SelectedItem.Text
end sub
</script>

<html>
<body>

<form runat="server">
<asp:RadioButtonList id="rb" runat="server"
AutoPostBack="True" onSelectedIndexChanged="displayMessage" />
<p><asp:label id="lbl1" runat="server" /></p>
</form>

</body>
</html>
»예보기