using System;
public partial class AlsoBoughtControl : System.Web.UI.UserControl
{
#region Event Handlers
protected void Page_Load(object sender, System.EventArgs e)
{
ProductsDB productCatalogue = new ProductsDB();
alsoBoughtList.DataSource = productCatalogue.GetProductsAlsoPurchased(
Convert.ToInt32(Request["ProductID"]));
alsoBoughtList.DataBind();
if (alsoBoughtList.Items.Count == 0)
{
alsoBoughtList.Visible = false;
}
}
#endregion
}