Buongiorno a tutti,
ho il seguente codice in asp classic che mi apre un file excel:
codice HTML:
<% @Language=VBScript %>
<% 'OPTION EXPLICIT' %>
<%
Response.Buffer=TRUE
Session.CodePage=65001
        Response.Charset="Utf-8"
        Response.Clear 
        Response.ContentType = "text/csv"
		Response.AddHeader "Content-Disposition", "attachment;filename=mio-file.csv"
      response.Write("test")
%>
E' possibile scegliere in quale foglio di excel andare a scrivere?
Grazie per l'aiuto!

Mara