Hello Team
I got a strange problem with winform gridview when exported to .csv , it exported the gridview data to .csv with enclosed quotes,
"1" "12.01" "22.01" "33.768" "2.12344" "5655.34"
"1" "13.01" "23.01" "34.768" "2.12344" "5656.34"
"1" "14.01" "24.01" "35.768" "2.12344" "5657.34"
"1" "15.01" "25.01" "36.768" "2.12344" "5658.34"
i observed that in ASP.NET AJAX gridview there is an option called EncloseDataWithQuotes =True/False, with this we can eliminate the enclosed quotes in the csv
due to the quotes in the data, i couldnt import to mySql database, please suggest the way to eliminate the quotes in .csv file
here is my code to export to .csv
ExportToCSV exporter = new ExportToCSV(this.radGridView1);
string fileName = "C:\\ExportedData.csv";
exporter.RunExport(fileName);
I got a strange problem with winform gridview when exported to .csv , it exported the gridview data to .csv with enclosed quotes,
"1" "12.01" "22.01" "33.768" "2.12344" "5655.34"
"1" "13.01" "23.01" "34.768" "2.12344" "5656.34"
"1" "14.01" "24.01" "35.768" "2.12344" "5657.34"
"1" "15.01" "25.01" "36.768" "2.12344" "5658.34"
i observed that in ASP.NET AJAX gridview there is an option called EncloseDataWithQuotes =True/False, with this we can eliminate the enclosed quotes in the csv
if winforms gridview also have the same property please tell me where i need to set it???, i checked in the below link, but there is no option to set
due to the quotes in the data, i couldnt import to mySql database, please suggest the way to eliminate the quotes in .csv file
here is my code to export to .csv
ExportToCSV exporter = new ExportToCSV(this.radGridView1);
string fileName = "C:\\ExportedData.csv";
exporter.RunExport(fileName);