0
我正在建設在線購物網站,我有一個管理頁面,可以在其中添加數據庫中的產品。現在,My Exact是我在Product.aspx頁面中加載動態值的問題,但值正在以單元格的形式添加Horizontally。 我想在asp.table中添加行,之後每隔4個單元格。 請幫我和對不起我的英語。在表中動態加載數據庫值asp.net
這是一段代碼。
private void Displaying_Products()
{
DataSet ds = obj.searching_product();
DataTable dt = new DataTable();
dt = ds.Tables["Register_Product"];
TableRow row = new TableRow();
foreach (DataRow dr2 in dt.Rows)
{
TableCell cell = new TableCell();
name = dr2["Name"].ToString();
des = dr2["Description"].ToString();
price = dr2["Price"].ToString();
Button btn = new Button();
btn.Height = 19;
btn.Width = 100;
btn.Text = "Add to Cart";
Label lbl = new Label();
lbl.Text = "Brand : " + name + " <br /> " + "Description : " + des + " <br /> " + "Price :" + price + " <br /> " + " <br /> ";
cell.Controls.Add(lbl);
cell.Controls.Add(btn);
cell.Width = 100;
cell.Height = 200;
row2.Cells.Add(cell);
}
image_table.Rows.Add(row2);
}