I used code below to get columns' name in SQL. Is there any to code in asp.net to get columns' name? SELECT COLUMN_NAME FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'Employees' ORDER BY ORDINAL_POSITION ...