Export to Excel

A

Amirallia

Hello,

Here is my code to export a datagrid to Excel :
Response.Clear()
Response.Buffer = True
Response.ContentType = "application/vnd.ms-excel"
Response.Charset = ""
Dim monStringWriter As StringWriter = New StringWriter
Dim monHtmlTextWriter As HtmlTextWriter = New
HtmlTextWriter(monStringWriter)
monDG.RenderControl(monHtmlTextWriter)
Response.Write(monStringWriter.ToString())
Response.End()

All is ok with Excel 2003, the browser ask me to open, save or cancel
the Excel file. And if I choice to open it, the Excel file opens on a
another page.
But on my Laptop (Excel 2000), I'haven't the possibility to Open, Save
or cancel, it directly opens it on the same page !!!!!

Any idea
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Members online

No members online now.

Forum statistics

Threads
473,769
Messages
2,569,580
Members
45,054
Latest member
TrimKetoBoost

Latest Threads

Top