I want to copy data from a table DataTableto a SQL Server table; how can i achieve this please help.
DataTable
You can copy data from a DataTable to a SQLServer database using the SQLServer and SqlBulkCopy control objects.
You can also try SqlDataAdapter to update the data in the database.