Esempio n. 1
0
    /// <summary>
    /// Puts all the customers into a table
    /// </summary>
    private void SetUpAdminRepeater()
    {
        CustomerCollection cc = new CustomerCollection();

        cc.FetchAll();
        adminRepeat.DataSource = cc;
        adminRepeat.DataBind();
    }