Hi All,
I have a web page that displays the contents of a dataset to a datagrid in a web page (using paging). I currently have the ability to export to Excel, however users now want to also be able to export to MS-Access.
I basically use the following technique to export to Excel:
Unfortunately I can't seem to get this to work with MS-Access. Has anybody been able to do this?
Thanks a million!
Yazster
I have a web page that displays the contents of a dataset to a datagrid in a web page (using paging). I currently have the ability to export to Excel, however users now want to also be able to export to MS-Access.
I basically use the following technique to export to Excel:
Code:
response.Clear()
response.Charset = ""
response.ContentType = "application/vnd.ms-excel"
response.AddHeader("Content-Disposition", "attachment;filename=MyExport.xls")
Unfortunately I can't seem to get this to work with MS-Access. Has anybody been able to do this?
Thanks a million!
Yazster