private void LoadGift() { List <DTO.GiftAndQuantity> lst = Product_BUS.GetGiftByProductID(proID); var obj = lst.Select((item, index) => { return(new { ProductName = item.Gift.ProductName, Price = item.Gift.Price.ToString("0,0", CultureInfo.CurrentCulture), Quantity = item.Quantity + "", Image = "../../Img/images/" + item.Gift.Image, LinkDetail = "ProductDetail.aspx?productID=" + item.Gift.ProductID, LinkDelete = "", GiftInfo = "Tên sản phẩm: <b>" + item.Gift.ProductName + "</b>" + "<br/>Giá: <b>" + item.Gift.Price.ToString("0,0", CultureInfo.CurrentCulture) + "đ" + "<br/>Số lượng tặng: <b>" + item.Quantity + "</b>" + "<br/>", GiftID = item.GiftID }); }); lstGift.DataSource = obj; lstGift.DataBind(); }