tutoriais mais recente desenvolvimento web
 

ASP.NET Web Forms - O objeto de SortedList


O objeto SortedList combina as características de ambos o objeto ArrayList eo objeto Hashtable.


Exemplos

Exemplos

SortedList RadioButtonList 1

SortedList DropDownList


O objeto de SortedList

O objeto SortedList contém itens em pares de chave / valor.

Um objeto SortedList classifica automaticamente os itens em ordem alfabética ou numérica.

Os itens são adicionados à SortedList com o Add() método.

Um SortedList pode ser dimensionada para o tamanho final com o TrimToSize() método.

O código a seguir cria um SortedList chamado mycountries e quatro elementos são adicionados:

<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>

Ligação de dados

Um objeto SortedList pode gerar automaticamente o texto e os valores para os seguintes controles:

  • asp: RadioButtonList
  • asp: CheckBoxList
  • asp: DropDownList
  • asp: Listbox

Para ligar os dados para um controle RadioButtonList, primeiro criar um controle RadioButtonList (sem qualquer asp: elementos ListItem) em uma página.aspx:

<html>
<body>

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

</body>
</html>

Em seguida, adicione o script que cria a lista:

<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>

Em seguida, adicione uma rotina de sub a ser executado quando o usuário clica em um item no controle RadioButtonList. Quando um botão de opção é clicado, um texto irá aparecer em uma etiqueta:

Exemplo

<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>
Mostrar exemplo »