exec sp_help
unfortunately this returns more than just the columns in the table. Alternately, to just list the columns use:
select name from syscolumns where id=object_id('
where
select name from syscolumns where id=object_id('Employees')
All About Programming