Page 1 of 1

Export as CSV without header rows

Posted: Sat May 13, 2017 12:31 am
by aspmaker_fan

Is this possible? how do we achieve this?

Kind regards
NM


Re: Export as CSV without header rows

Posted: Sat May 13, 2017 11:06 am
by motfs

You need to modify the Export class for your case. Refer to the file "aspxfn.cs" for class cExportCsv:

public class cExportCsv: cExportBase {

		...

		// Table header
		public override void ExportTableHeader() {
			// Skip
		}

                    ...

}