4 messaggi dal 07 giugno 2001
ho un nuovo messaggio di errore ke nn credo di aver ancora letto negli altri post:

------------------------------------------
ADODB.Recordset errore "800a0e78'
The operation requested by the application is not allowed if the object is closed.
------------------------------------------

il codice ke provoca questo errore è il seguente:

<code>
&lt;%
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & server.mappath("/mdb-database/database.mdb")

Set rs = Server.CreateObject ("ADODB.Recordset")

page = rs.AbsolutePosition
totPag = rs.PageSize
Max = 10

startPage = page
EndPage = page + max

' qualche controllo
if EndPage &gt; totPage then EndPage = totPage

for i = StartPage to EndPage

Response.write "&lt;a href='cerca.asp?page=" & i & "'&gt;" &_
i & "&lt;/a&gt; "
next

if page &lt;= totpage then
Response.write "&lt;a href='cerca.asp?page=" & page+1 & "'&gt;" &_
"&gt;&gt;&lt;/a&gt; "

end if
%&gt;
</code>

potreste spiegarmi il why ed il because di tutto ciò, grazie.
41 messaggi dal 31 marzo 2001
<b>yuusaku ha scritto:</b>
<BLOCKQUOTE id=quote><font size=1 face="Arial" id=quote>quote:<hr height=1 noshade id=quote>
ho un nuovo messaggio di errore ke nn credo di aver ancora letto negli altri post:

------------------------------------------
ADODB.Recordset errore "800a0e78'
The operation requested by the application is not allowed if the object is closed.
------------------------------------------

il codice ke provoca questo errore è il seguente:

<code>
&lt;%
Set cn = Server.CreateObject("ADODB.Connection")
cn.Open "driver={Microsoft Access Driver (*.mdb)};dbq=" & server.mappath("/mdb-database/database.mdb")

Set rs = Server.CreateObject ("ADODB.Recordset")

page = rs.AbsolutePosition
totPag = rs.PageSize
Max = 10

startPage = page
EndPage = page + max

' qualche controllo
if EndPage &gt; totPage then EndPage = totPage

for i = StartPage to EndPage

Response.write "&lt;a href='cerca.asp?page=" & i & "'&gt;" &_
i & "&lt;/a&gt; "
next

if page &lt;= totpage then
Response.write "&lt;a href='cerca.asp?page=" & page+1 & "'&gt;" &_
"&gt;&gt;&lt;/a&gt; "

end if
%&gt;
</code>

potreste spiegarmi il why ed il because di tutto ciò, grazie.
<hr height=1 noshade id=quote></BLOCKQUOTE id=quote></font id=quote><font face="Arial" size=2 id=quote>
Per un corretto funzionameto alla fine dello script dovresti chiudere la connessione col db e poi nota (manca una end if)



Torna al forum | Feed RSS

ASPItalia.com non è responsabile per il contenuto dei messaggi presenti su questo servizio, non avendo nessun controllo sui messaggi postati nei propri forum, che rappresentano l'espressione del pensiero degli autori.