如何在asp.net的gridview中动态添加列表

时间:2019-05-23 12:03:45

标签: c# asp.net

我正在为要创建订单的学校制作一个基本的网上商店项目。我有一个与数据库绑定的gridview。当用户选择产品时,该产品的数据将显示在文本框中。用户可以通过按下按钮将该产品添加到他的购物车中。问题是,当按下按钮时,需要将所有已订购产品的产品添加到摘要中。我找不到在gridview,表或列表中显示多个产品(并创建多个行)的方法。有谁知道如何使用文本框中的文本向表的网格视图添加行?

致谢

tblBestelling.Rows.Add(row);
        row.Controls.Add(cel);
        cel.Controls.Add(txtArtikel);
        row.Controls.Add(cel);
        cel.Controls.Add(txtPrijs);
        Panel1.Controls.Add(tblBestelling);

        List<string> Producten = new List<string>();
        Producten.Add(txtPrijs.Text);

        ListView1.DataSource = Producten;
        ListView1.DataBind();

        for (int teller=0;teller<Producten.Count; teller++)
        {
            ListViewItem item = new ListViewItem(txtArtikel.Text);
            item.DataItem = Producten[teller];
            ListView1.Items.Add(item);

我的文本框需要保留,数据需要保存

0 个答案:

没有答案