Top "Datatable" questions

The term "datatable" is ambiguous.

Copy rows from one Datatable to another DataTable?

How can I copy specific rows from DataTable to another Datable in c#? There will be more than one row.

c# datatable
Convert datatable to JSON in C#

I want to get records from database into a DataTable. Then convert the DataTable into a JSON object. Return the …

c# json datatable
Simple way to convert datarow array to datatable

I want to convert a DataRow array into DataTable ... What is the simplest way to do this?

c# arrays datatable datarow
Insert a new row into DataTable

I have a datatable filled with staff data like.. Staff 1 - Day 1 - Total Staff 1 - Day 2 - Total Staff 1 …

c# datatable
Get Cell Value from a DataTable in C#

Here is a DataTable dt, which has lots of data. I want to get the specific Cell Value from the …

c# .net datatable
Loop through the rows of a particular DataTable

IDE : VS 2008, Platform : .NET 3.5, Hi, Here is my DataTable columns : ID Note Detail I want to write sth like this : //…

vb.net datatable
How I can filter a Datatable?

I use a DataTable with Information about Users and I want search a user or a list of users in …

c# asp.net filter datatable dataset
Access cell value of datatable

Can anyone help me how to access for example value of first cell in 4th column? a b c d 1 2 3 5 …

c# asp.net visual-studio-2008 datatable
How do I get column names to print in this C# program?

I've cobbled together a C# program that takes a .csv file and writes it to a DataTable. Using this program, …

c# datatable datarow datacolumn
Export DataTable to Excel File

I have a DataTable with 30+ columns and 6500+ rows.I need to dump the whole DataTable values into an Excel file.…

c# asp.net excel datatable export