0
votes
1answer
163 views

How to data Export to CSV using JQuery or Javascript

What I needed: We have value in the response.d that is comma deliminated value. Now I want to export the data of response.d to .csv file. I have written this function to perform this. I have ...
0
votes
4answers
1k views

Export data table to Excel sheet

I want to export data from data table to excel file. I need to save the file on server. I am using the console application for this project. Please help me. Thanks in advance.
1
vote
1answer
905 views

Export HTML Table to Excel using ASP.NET with multiple work sheets

I have the below two different html tables with me. Now I want to export these two html table to single excel sheet with two different Sheets (i.e work sheet). For example, Table 1 will be one sheet ...
0
votes
2answers
863 views

How to export Type DataTable (TVP) to a .csv or .xls file?

I want to export TVP (Type of DataTable) to .csv file, or .xls, but more to .csv using aspx. Can you help me with this questuion?
0
votes
2answers
347 views

Can I Only Export the visible items in a DevExpress Grid

We have data using DevExpress Grid on a web application, and the users are asking to only export the visible data from the page. At the moment, if we do an export, it exports everything from the grid, ...
0
votes
1answer
367 views

html table to CSV, formatting problem in csv

I am stuck with idea on creating proper CSV from an html table. I am using HTMLAgilityPack to read the html from string and create a HTMLDocument. Then I am using XPATH to loop through rows and ...
2
votes
2answers
1k views

Export table rows directly to a csv file using asp.net C#

How do I export result of a sql query to a csv file without mapping to an object. Is there a direct way for this?
4
votes
1answer
5k views

Writing csv file in asp.net

I'm trying to export data to a csv file, as there are chinese characters in the data i had to use unicode.. but after adding the preamble for unicode, the commas are not recognized as delimiters and ...