ユーザー入力を受け入れるために、27 個のセルに 27 個のドロップダウン メニューが必要なテーブルがあります。現在、27 個すべてを次のように宣言しています。
DropDownList DropList1 = new DropDownList();
DropList1.ID = "TrendList1";
DropList1.AutoPostBack = true;
DropList1.SelectedIndexChanged += new EventHandler(this.Selection_Change);
DropList1.DataSource = CreateDataSource();
DropList1.DataTextField = "ColorTextField";
DropList1.DataValueField = "ColorValueField";
DropList1.DataBind();
DropDownList DropList2 = new DropDownList();
DropList2.ID = "TrendList2";
DropList2.AutoPostBack = true;
DropList2.SelectedIndexChanged += new EventHandler(this.Selection_Change);
DropList2.DataSource = CreateDataSource();
DropList2.DataTextField = "ColorTextField";
DropList2.DataValueField = "ColorValueField";
DropList2.DataBind();
etc...
しかし、私が書いた力ずくのコードよりも良い方法が必要であることはわかっています。残念ながら、私は Web プログラミングが初めてで、これを行うためのより良い方法を見つけることができませんでした。
アドバイスをいただければ幸いです。
よろしく。