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 difference between viewbag and viewdata and tempdata?

959


what is scalar property?

1013


what is use of entity container?

993


How to Create an Intranet Site Using ASP.NET MVC?

1035


What is mapping in entity framework? : Entity framework

921


What are the difference between asynchronous controller implementation between asp.net mvc 3 & asp.net mvc 4?

1028


What happens when I install the .net framework 3.0? How can I upgrade if I already have the .net framework 2.0 installed?

922


What are the two ways to add constraints to a route?

917


What is edm designer? : Entity framework

924


Explain the 'page lifecycle' of an ASP.NET MVC?

1068


i want to take the fast track training on >net Frame work and work flows and share point could you tellme the good institutes for that cources

1957


how do you mark a property as required? For example, for a project, the name is a required field.

1002


What are authentication filters in web api?

997


What is the use of razor view engine?

914


What are Action Methods in ASP.NET MVC?

1075