From what I could find, you could try to create your own export button option by removing this button and adding your own asp page. You will need to start by dragging the button onto the page and double-clicking on it to automatically generate the code. From there add code
crystalReportViewer1.ExportReport ()
Once this code is in it, the default settings for the export options will be used, however, if you want to change the export options in this button, you need to manually encode it.
' Declare variables and get the export options. Dim exportOpts As New ExportOptions() Dim diskOpts As New DiskFileDestinationOptions() Dim excelFormatOpts As New ExcelFormatOptions() exportOpts = Report.ExportOptions ' Set the excel format options. excelFormatOpts.ExcelTabHasColumnHeadings = true exportOpts.ExportFormatType = ExportFormatType.Excel exportOpts.FormatOptions = excelFormatOpts ' Set the export format. exportOpts.ExportFormatType = ExportFormatType.Excel exportOpts.ExportDestinationType = ExportDestinationType.DiskFile ' Set the disk file options. diskOpts.DiskFileName = fileName exportOpts.DestinationOptions = diskOpts Report.Export()
MSDN SITE
This link gives you the same code as above. It shows how to do this in Visual Basic code. so in your aspx.vb code you have to manually enter the types of formats you want.
source share