ListBoxへ値がされない
投稿者 kojiro  (社会人)
投稿日時
2020/6/1 13:20:56
DropDownList1のプロパティを以下のようにして、解決されました。
ありがとうございました。
AppendDataBoundItems=True
AutoPostBack=True
ありがとうございました。
AppendDataBoundItems=True
AutoPostBack=True
DropDownList1には、データベースバインドで、地域名が28個表示されます。
Protected Sub Page_Load(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Load
If Page.IsPostBack = False Then
DropDownList1.Items.Add("選択してください")
End If
End Sub
Protected Sub DropDownList1_SelectedIndexChanged(sender As Object, e As EventArgs) Handles DropDownList1.SelectedIndexChanged
ListBox1.Items.Add(DropDownList1.Text)
End Sub
で
1.DropDownList1の先頭に、"選択してください"がついかされない
2.DropDownList1を、選択しても、ListBox1へ追加されない。