Question : Telerik RadGrid

Not sure if anyone can help me here...I already have a support ticket into Telerik...but would really like thius done today.

My attached code works fine...but Telerik does a "prompt" during the export process.

I just want to save the file on the server.

Any ideas?
1:
2:
3:
4:
5:
6:
7:
8:
Protected Sub btnExport_Click(ByVal sender As Object, ByVal e As System.Web.UI.ImageClickEventArgs) Handles btnExport.Click
        RadGrid1.MasterTableView.Columns.FindByUniqueName("active").Visible = False
        RadGrid1.ExportSettings.Excel.Format = Telerik.Web.UI.GridExcelExportFormat.ExcelML
        RadGrid1.ExportSettings.ExportOnlyData = True
        RadGrid1.ExportSettings.IgnorePaging = True
        RadGrid1.ExportSettings.FileName = "directory"
        RadGrid1.MasterTableView.ExportToExcel()
    End Sub

Answer : Telerik RadGrid

You could try disabling the confirm open after download flag for xls files. It is quick  =>
http://www.mydigitallife.info/2007/06/15/disable-automatic-opening-or-saving-of-downloads-re-enable-always-ask-before-check-box/
Random Solutions  
 
programming4us programming4us