Comma Separated Value
-
Hi Every body..., i have problem with CSV.How to Coverting data in a table to CSV file. (i am using Sql2005 and Vs2005 asp.net ajax,C#) Please Help Me.........,
-
Hi Every body..., i have problem with CSV.How to Coverting data in a table to CSV file. (i am using Sql2005 and Vs2005 asp.net ajax,C#) Please Help Me.........,
The fact that you mention AJAX makes me worry that you don't understand any of hte things you are using. you get your data from SQL Server, and you write it to a file, with a comma between each value and a new line between each line. It's really that simple. Which bit are you stuck on ?
Christian Graus Driven to the arms of OSX by Vista.
-
Hi Every body..., i have problem with CSV.How to Coverting data in a table to CSV file. (i am using Sql2005 and Vs2005 asp.net ajax,C#) Please Help Me.........,
- Using a datareader to directly read the data and write the file yourself 2) Using a DataTable/DataAdapter combination to load the data and write the file yourself 3) Using Sql's built-in export feature to write the file 4) Using Sql's ability to output Xml and using an XSL Transformation to write the file There, that should give you some google fodder. Ive probably missed a few.