Salve a tutti,
non sono che un principiante in materia e avrei bisogno del
vostro aiuto.
Sto cercando di sviluppare un sito in ASP con Dreamweaver;
in locale tutto bene, nessun errore.
Appena carico sul server mi dà questo errore:

Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[Microsoft][Driver Manager ODBC] Nome origine dati non trovato e driver predefinito non specificato.

/regate.asp, line 8


Riporto anche il codice che è stato interamente generato da Dreamweaver.

<%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%>

<%
Dim rsregate
Dim rsregate_numRows

Set rsregate = Server.CreateObject("ADODB.Recordset")
rsregate.ActiveConnection = MM_yct_STRING
rsregate.Source = "SELECT * FROM REGATE"
rsregate.CursorType = 0
rsregate.CursorLocation = 2
rsregate.LockType = 1
rsregate.Open()

rsregate_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index

Repeat1__numRows = -1
Repeat1__index = 0
rsregate_numRows = rsregate_numRows + Repeat1__numRows
%>



non so più a chi rivolgermi se non a voi.

Grazie