Greetings,
I have a Classic ASP-based webpage that, on the click of a button, generates a dynamic result set that exports into Microsoft Excel using the following method:
There's one field in the Excel export that gets messed up because Excel reads it as a number, not text, so it looks like this: 9.1561282123729 7E+21. The field displays correctly when the recordset is displayed in the browser.
Does anyone have any suggestions how I can pass the exported value to Excel so it will display correctly?
Regards,
j
I have a Classic ASP-based webpage that, on the click of a button, generates a dynamic result set that exports into Microsoft Excel using the following method:
Code:
<% Response.ContentType = "application/vnd.ms-excel" %>
Does anyone have any suggestions how I can pass the exported value to Excel so it will display correctly?
Regards,
j
Comment