ASP.Netのお勉強

ドロップダウンリスト@ASP.Net

ドロップダウンリストを表示します。

画面に表示ボタンを設けます。
表示ボタンを押した際に、ドロップダウンリストの設定します。
リストに表示したい中身を作成します。
Stringの配列をDataSourceに設定して、DataBindを行います。

ドロップダウンリストの選択は、SelectedIndexChangedをハンドルします。
以下では、選択された値をラベルに表示しています。

●aspx

<%@ Page Language="VB" AutoEventWireup="false" CodeFile="DropDown.aspx.vb" Inherits="DropDown" %>

<!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" >
<head runat="server">
    <title>ドロップダウンリスト</title>
</head>
<body>
    <form id="form1" runat="server">
    <div>
        <asp:Button ID="Button1" runat="server" Text="表示" /><br />
        <asp:DropDownList ID="DropDownList1" runat="server" AutoPostBack="True">
        </asp:DropDownList>
        <asp:Label ID="Label1" runat="server" Text=""></asp:Label>
    </div>
    </form>
</body>
</html>


●vb

Partial Class DropDown
    Inherits System.Web.UI.Page


    Protected Sub Button1_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles Button1.Click
        Dim strDS As String()

        strDS = New String() {"item1", "item2", "item3"}

        DropDownList1.DataSource = strDS
        DropDownList1.DataBind()
    End Sub

    Protected Sub DropDownList1_SelectedIndexChanged(ByVal sender As Object, ByVal e As System.EventArgs) Handles DropDownList1.SelectedIndexChanged
        Me.Label1.Text = Me.DropDownList1.SelectedValue + "が選択されました。"
    End Sub
End Class

Copyright (C) ASP.Netのお勉強. All Rights Reserved.