Skip to main content
A newer version of this page is available. .
Tab

ASPxGridExporterBase.WriteXlsToResponse(XlsExportOptions) Method

OBSOLETE

Use another overload of this method instead.

Exports the grid’s data to a file in XLS format with the specified export settings, and writes it to the Response in binary format.

Namespace: DevExpress.Web

Assembly: DevExpress.Web.v19.1.dll

Declaration

[Obsolete("Use another overload of this method instead.")]
public void WriteXlsToResponse(
    XlsExportOptions exportOptions
)

Parameters

Name Type Description
exportOptions XlsExportOptions

A XlsExportOptions object that provides export options.

Remarks

The WriteXlsToResponse method exports data to a file whose name is specified by the ASPxGridViewExporter.FileName property.

Note

Before exporting a grid, the ASPxGridExporterBase component creates an export document on a server. Therefore, when you export a large amount of data to a server with limited memory, the OutOfMemoryException exception may appear.

ASPxGridViewExporter1.WriteXlsToResponse("test.xls", new XlsExportOptions() { ExportMode = XlsExportMode.DifferentFiles }); 

Concept

See Also