将控件添加到表中的innerhtml div

时间:2014-01-27 19:52:22

标签: c# asp.net innerhtml

在div中我试图从codebehind添加一个表。 我需要在这个表中添加2个控件,所以为了做到这一点,我把代码放在Page_Init()中,但它不会添加控件,所以我该怎么做才能解决这个问题,或者我应该采用完全不同的方式

我的代码:

if ((List<ShoppingCart>)Session["shoppin"] != null)
        {
            string cartcontent = "";
            TextBox txtbox = new TextBox();
            txtbox.TextChanged +=new EventHandler(txtbox_TextChanged);
            txtbox.CssClass = "carttextbox";
            Button btn = new Button();
            btn.Click +=new EventHandler(btn_Click);
            btn.Text = "Remove";
            btn.CssClass = "cartbtn";
            maincontent.Controls.Add(txtbox);
            maincontent.Controls.Add(btn);

            foreach (ShoppingCart r in (List<ShoppingCart>)Session["shoppin"])
            {
                cartcontent = cartcontent + "<tr class='row'>" +
                    "<td class='cart_prods'>" +
                    "<table>" +
                    "<tr>" +
                    "<td colspan='2'><b>" + r.ProductName + "</b></td>" +
                    "</tr>" +
                    "<tr>" +
                    "<td align='center' style='width:100%'> <img src='" + r.ProductImage + "' alt='' style='max-height:150px' /></td>" +
                    "<td><div class='.cart_products_options'><i>" + r.ProductOptions + "</i></div></td>" +
                    "</tr>" +
                    "</table>" +
                    "</td>" +
                    "<td class='cart_update' style='border-width: 0px 1px 1px 0px;'>" + txtbox + btn + "</td>" + 
                    "<td class='cart_price' style='border-width: 0px 0px 1px;'><span class='ProductSpecialPrice'> $"+ r.ProductPrice + "</span></td>"
                    +"</tr>";
                double pricetotal = 0;
                pricetotal = pricetotal + r.ProductPrice;
            }

            maincontent.InnerHtml = "<table width='90%' style='margin:0 auto; margin-top:50px;' class='cart'>" +
                "<tr align='center'>" +
                    "<th class='th1'><b>Product(s)</b></th>" +
                    "<th><b>Qty</b></th>" +
                    "<th class='th3'><b>Total</b></th>" +
                "</tr>" + cartcontent +
                "<tr class='cart_total'>" +
                    "<td></td>" +
                    "<td style='border-width: 1px 1px 0px 0px; text-align:right;'>Sub-Total</td>" +
                    "<td></td>" +
                "</tr>" +
            "</table>";
        }

1 个答案:

答案 0 :(得分:3)

以下方法应该更简单,并且还可以避免动态添加控件:

  • 在页面上创建一个Repeater。
  • 设置HeaderTemplate和FooterTemplate,使其包含开始表标记(如果是页脚,则为结束标记)以及表格页眉和页脚的标记。
  • 设置ItemTemplate,使其与您在cartcontent字符串中构建的标记相匹配。将包含购物车数据的控件添加到ItemTemplate,并使用数据绑定设置文本。
  • 如果有条目,则将Repeater绑定到List<ShoppingCart>,否则将Visible设置为false。

有关Repeater控件的详细信息,请参阅此link。它还包含各种教程的链接。

<强>更新
为了在不使用DataBinding的情况下动态设置行中的值,例如要在页脚中设置总计,请执行以下操作:

  • 为页脚添加标签,为其指定ID并设置runat="server"
  • 为Repeater的ItemDataBound事件添加处理程序。
  • 在处理程序中,检查绑定的项目类型。如果是页脚,请找到Label控件并为其指定值。

private void Rpt_ItemDataBound(object sender, RepeaterItemEventArgs e)
{
    if (e.Item.ItemType == ListItemType.Footer)
    {
        var lbl = (Label)e.Item.FindControl("LabelId");
        if (lbl != null)
            lbl.Text = "123.45";
    }
}