Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I have a list of Employee records being returned in a List format. How can I populate a gridview dynamically?

ePremiumSubscriber.Subscriber PremSubData = new ePremiumSubscriber.Subscriber();
List<ePremiumSubscriber.Subscriber> premSubList = new List<ePremiumSubscriber.Subscriber>();

ePremiumCustomerDAL.SearchPremSubscriberData(premSubList, sqlQuery);  


DataTable dtSearchResults = new DataTable();
dtSearchResults.Columns.Add("psLastName", System.Type.GetType("System.String"));
dtSearchResults.Columns.Add("psFirstName", System.Type.GetType("System.String"));
share|improve this question
By Default, AutoGenerateColumns="True", and the grid creates the columns according to the data source... – Brian Mains Jul 19 '12 at 19:00

1 Answer

up vote 2 down vote accepted

Drop a GridView control you asp.net page and then you can do it his way

GridView1.DataSource = dtSearchResults ;

GridView1.DataBind();
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.