Exemple #1
0
        /// <summary>
        /// gets a list of the database tables name and append it
        /// to the tables drop down list
        /// </summary>
        protected void ddlTables_Fill()
        {
            List <string> tables = ViewAccess.GetTables();

            foreach (string table in tables)
            {
                ddlTables.Items.Add(table);
            }
        }