Welcome to Vlearn3D Node registration!
Further down you can see the list of all participating nodes
(you can select and view more information about any particular one) and there is also a link
to register your own.
<%
'set up the connection
set conntemp=server.createobject("adodb.connection")
' cnpath="Server=CTCWORLDSRV1; Database=VLEARN2000; UID=vlearn3d; PWD=********"
cnpath="Server=SCICENTR1; Database=VLEARN2000; trusted_connection=true"
conntemp.Open "DRIVER={SQL Server}; " & cnpath 'open connection
sqltemp="select * from REGISTRATION" 'query string
'set up recordset
set rstemp=server.CreateObject("adodb.recordset")
rstemp.CursorType=2
'open recordset
rstemp.Open sqltemp, conntemp
%>