在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>";
}
答案 0 :(得分:3)
以下方法应该更简单,并且还可以避免动态添加控件:
cartcontent
字符串中构建的标记相匹配。将包含购物车数据的控件添加到ItemTemplate,并使用数据绑定设置文本。List<ShoppingCart>
,否则将Visible设置为false。有关Repeater控件的详细信息,请参阅此link。它还包含各种教程的链接。
<强>更新强>
为了在不使用DataBinding的情况下动态设置行中的值,例如要在页脚中设置总计,请执行以下操作:
runat="server"
。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";
}
}