Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...

How to bind table coloum with gridview column

Answer Posted / eyesice

DataTable dt = new DataTable("Sample");
DataColumn dc;

dc = new DataColumn("ID");
dc.DataType = System.Type.GetType("System.Int32");
dt.Columns.Add(dc);

dc = new DataColumn("Name");
dc.DataType = System.Type.GetType("System.String");
dt.Columns.Add(dc);

dataGridView1.DataSource = dt;

Is This Answer Correct ?    4 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

what is linq to entities?

1139


What is filters in web api?

985


how can you tell ef to have a different table or column name than that defined for the class?

1070


How we can call a javascript function on the change of a dropdown list in mvc?

1059


What is asp net framework?

980


Why to use “{resource}.axd/{*pathinfo}” in routing in mvc?

1137


What are the advantages of razor view engine?

924


When using aspx view engine, to have a consistent look and feel, across all pages of the application, we can make use of asp.net master pages. What is asp.net master pages equivalent, when using razor views?

1003


What is the benefit of entity framework?

999


How OS come to know whether to load the .net framework when we run an .exe created using .Net framework?

1026


What is the greatest advantage of using asp.net mvc over asp.net webforms?

1013


What is html.renderpartial?

1027


explain lazy loading, eager loading, and explicit loading?

1024


What is a view engine?

978


What is basic authentication in web api?

1062