0
BulletedListの項目に応じてDropDownListsの数を表示します。私は以下のコードを試しました。ASP.net VBで複数のDropDownListを動的に作成するには
新しいDropDownListコントロールとして薄暗い量
For Each x As ListItem In BulletedList1.Items
quantity.ID = "mylist"
quantity.Items.Add(New ListItem("1", "1"))
quantity.Items.Add(New ListItem("2", "2"))
quantity.Items.Add(New ListItem("3", "3"))
quantity.Items.Add(New ListItem("4", "4"))
quantity.Items.Add(New ListItem("5", "5"))
PlaceHolder1.Controls.Add(quantity)
Next
試しました。うまくいかなかった –