Ejemplo n.º 1
0
    private void FillRepeatorTshirt()
    {
        DataTable  dtTshirt   = new DataTable();
        ProductBAL balProduct = new ProductBAL();

        dtTshirt = balProduct.SelectAllTshirt();

        if (dtTshirt != null && dtTshirt.Rows.Count > 0)
        {
            rptTshirt.DataSource = dtTshirt;
            rptTshirt.DataBind();
        }
    }