aaaaaaaaaaaaahhhhhhhhhhh, así ya me queda claro ...
En las respuestas anteriores hay códigos de como se hace, yo ahorita no tengo algún programa que haga eso ya que no uso CR hace ya algunos trabajos atras
Pero recordando más o menos como se hace encontré esto en Internet:
http://p2p.wrox.com/topic.asp?TOPIC_ID=29466
Estos seguro te va a servir. Aunque adicionalmente a ese mensaje, es muy importante que siempre tengas a la mano para referencias los ejemplos que vienen con CR (o que bajas de su web). Si consultas el programa SimpleSetlogoonInfo.asp, verás lo siguiente:
Código:
==================================================================
'==================================================================
' WORKING WITH SETLOGONINFO
'
' The datasource here is called "Pubs Sample Database". It is a System
' Datasource (DSN), and points to the "pubs" database, which is installed
' with SQL Server. You will also need to change your user id and
' password.
'Create a reference to the tables collection of the main report
Set mainReportTableCollection = Session("oRpt").Database.Tables
For Each mnTable in mainReportTableCollection
With mnTable.ConnectionProperties
.Item("user ID") = "sa"
.Item("Password") = "sa"
.Item("DSN") = "Pubs Sample Database"
.Item("Database") ="pubs"
End With
Next
Saludos