我正在撰写一个项目,装上产品清单,然后提供删除产品的选择。 ASP. NET C#
为此建立了用户控制。
The user control has product image, name , and has one button for delete. and this user control is loaded dynamically into a page lets say Products page.
但是,我把一系列用户控制动态装入产品网页。
以下是该守则。
ProductInfo ib = (ProductInfo)LoadControl("ProductInfo.ascx");
ProductName = "xyz";
/**and so on*//
spn_list.Controls.Add(ib);
现在,每个产品都从数据库中显示,每个产品也删除了纽伦。
但是,在点击删除的纽扣吨时,它并不称他的活动。 无。
have also tried to use break Point but it does not reaches there. ?????
审判 实例
但不工作