パネルがあります。私のデータベースには人のリストがあります..実行時に各人に対して、それらの下に異なる属性を追加します。私はすべての人をリストとしてリストしたい(人ごとに別のリスト)。後で値を追加します。
ここに私の.aspxコードがあります
<asp:Panel ID="DR_list" runat="server" Direction="LeftToRight" Height="227px"
HorizontalAlign="Center" ScrollBars="Horizontal" Wrap="False">
<asp:ListView >
</asp:ListView>
</asp:Panel>
私のC#コードは
SqlDataReader myReader = null;
SqlCommand myCommand = new SqlCommand("select drname from --- ",
myConnection);
myReader = myCommand.ExecuteReader();
while (myReader.Read())
{
//Response.Write(myReader["DrName"].ToString());
int tRows;
int tCells;
List<string> DrNames = new List<string>();
for (tCells = 0; tCells < 4; tCells++)
{
string a = myReader["DrName"].ToString();
Response.Write(a);
DrNames.Add(a);
}
DR_list.Controls.Add(DrNames);
}
}
助けてください..よろしくお願いします