When using classic ASP, what is the difference between declaring a connection through an object tag:
<object RUNAT="Server" ID="cn" PROGID="ADODB.Connection"></object>
and declaring the connection through a call to Server.CreateObject ():
set cn = Server.CreateObject("ADODB.Connection")
Or is there any difference? Performance, memory, etc.
source share