Export as CSV without header rows

This public forum is for user-to-user discussions of ASP.NET Maker. Note that this is not support forum.
Post Reply
aspmaker_fan
User
Posts: 46

Export as CSV without header rows

Post by aspmaker_fan »

Is this possible? how do we achieve this?

Kind regards
NM


motfs
User
Posts: 258

Post 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
		}

                    ...

}


Post Reply