Hi all,
I have a asp-page that displays the results from a executed SQL-query. This works fine.
Set Conn=Server.CreateObject("ADODB.Connection"
conn.Open
set rs=Server.CreateObject("ADODB.Recordset"
sql="sql statement"
rs.open sql,conn,3,3
But how should I do if want to send the recordset directly to Excel instead?
/Kent J.
I have a asp-page that displays the results from a executed SQL-query. This works fine.
Set Conn=Server.CreateObject("ADODB.Connection"
conn.Open
set rs=Server.CreateObject("ADODB.Recordset"
sql="sql statement"
rs.open sql,conn,3,3
But how should I do if want to send the recordset directly to Excel instead?
/Kent J.