0

我有一个面板。在我的数据库中,我有一个人员列表。对于运行时的每个人,我在他们下面添加不同的属性。我希望所有的人都被列为一个列表(每个人的单独列表)。我稍后会添加值。

这是我的 .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);

         }
     }

请帮助我..提前谢谢

4

2 回答 2

0

我建议您将 runat="server" 添加到面板中,以便添加此数据,但将数据添加到循环结构的末尾

于 2013-03-19T14:09:08.587 回答
0

您是否按照人们的建议尝试过?

         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);
              }
             //adding list box to the panel
             yourPanel.Controls.Add(new ListBox(){/*set id to the list here*/});

             DR_list.Controls.Add(DrNames);

         }
     }
于 2013-03-19T14:19:00.680 回答