Ho realizzato un semplice sistema di news con dreamveaver
in locale mi funziona e online mi da quest'errore
ADODB.Recordset error '800a0bb9'
Arguments are of the wrong type, are out of acceptable range, or are in conflict with one another.
/inseriscinews.asp, line 130
http://www.casinareale.it/index_admin.asp
allego parte del codice
<%@LANGUAGE="VBSCRIPT"%>
<%
Dim news
Dim news_numRows
Set news = Server.CreateObject("ADODB.Recordset")
news.ActiveConnection = MM_news_STRING
news.Source = "SELECT * FROM news ORDER BY ID DESC"
news.CursorType = 0
news.CursorLocation = 2
news.LockType = 1
news.Open()
news_numRows = 0
%>
<%
Dim Repeat1__numRows
Dim Repeat1__index
Repeat1__numRows = -1
Repeat1__index = 0
news_numRows = news_numRows + Repeat1__numRows
%>
<%
Dim MM_paramName
%>
ecc......

Rispondi quotando