Hello,
I have a database in SQL Server 2000 which i want to connect to Dreamweaver, ASP/VBScript.
I need to read from the ASP the tables and data that are in SQL Server bring them and show it through the web page.
I did this connection:
<% ConnectToDB() %>
.
.
.
.
<% DisconnectFromDB() %>
I also did this:
<% set oRs = server.CreateObject("ADODB.Recordest")
oRs.Open "Skills", , , adCmdTable
oRs.MoveFirst %>
But nothing happens.... :-(
What can i do?