Hi Telerik Team,
I am having a problem with the export feature of RadGrid. Whenever I export my radgrid data to excel in IE6, an error occurs.
Error message: 'C:\Documents and Settings\Von\Local Settings\Temporary Internet Files\Content.IE5\VMOJZLKL\Employee Record Report[1].xls' could not be found. Check the spelling of the file name, and verify that the file location is correct. If you are trying to open the file from your list of most recently used files, make sure that the file has not been renamed, moved, or deleted.
The bigger problem is whenever I try this feature using Firefox, it works perfectly.
Here is my code:
protected void btnExport_Click(object sender, EventArgs e)
{
grdEmployeeInfo.Page.Response.ClearHeaders();
grdEmployeeInfo.Page.Response.Cache.SetCacheability(HttpCacheability.Private);
grdEmployeeInfo.MasterTableView.ExportToExcel();
}
May I request some help with this?
Thanks a lot!
Regards,
Von
I am having a problem with the export feature of RadGrid. Whenever I export my radgrid data to excel in IE6, an error occurs.
Error message: 'C:\Documents and Settings\Von\Local Settings\Temporary Internet Files\Content.IE5\VMOJZLKL\Employee Record Report[1].xls' could not be found. Check the spelling of the file name, and verify that the file location is correct. If you are trying to open the file from your list of most recently used files, make sure that the file has not been renamed, moved, or deleted.
The bigger problem is whenever I try this feature using Firefox, it works perfectly.
Here is my code:
protected void btnExport_Click(object sender, EventArgs e)
{
grdEmployeeInfo.Page.Response.ClearHeaders();
grdEmployeeInfo.Page.Response.Cache.SetCacheability(HttpCacheability.Private);
grdEmployeeInfo.MasterTableView.ExportToExcel();
}
May I request some help with this?
Thanks a lot!
Regards,
Von