Ciao a tutti,
ho un problemino al quale mi piacerebbe trovare una soluzione.
Ho creato un file Excel in questo modo, molto semplice ed efficace:
<%
Response.ContentType = "application/vnd.ms-excel"
Response.AddHeader "Content-Disposition", "attachment;filename=cipolline.xls"
%>
<html>
<head>
<title><%=varTitolo%></title>
<style type="text/css">
.testo
{
FONT-FAMILY: Verdana, Arial;
FONT-SIZE: 10pt;
COLOR: #000000
}
.testoEl
{
FONT-FAMILY: Lucida Sans Unicode, Verdana;
FONT-WEIGHT: bold;
FONT-SIZE: 20px;
COLOR: #D94401
}
</style>
</head>
<body>
<%=varBody%>
</body>
</html>
Pero' mi crea un solo Sheet ...
come posso crearne diversi?
Grazie in anticipo