162 messaggi dal 07 novembre 2003
<% 
iPageSize = 15 
If Request.QueryString("page") = "" Then
iPageCurrent = 1
Else
iPageCurrent = CInt(Request.QueryString("page"))
End If
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Open "DRIVER={Microsoft Access Driver (*.mdb)};" &_
"DBQ="& Server.MapPath("../database/mpdb.mdb")  
strSQL = "SELECT * FROM pr ORDER BY nome_locale Desc" 
set rs = conn.execute(strSQL)
if not rs.eof then
Set objRS = Server.CreateObject("ADODB.Recordset")
objRS.PageSize = iPageSize
objRS.CacheSize = iPageSize
<span style="color:blue">objRS.Open strSQL, Conn, adOpenStatic, adLockReadOnly, adCmdText</span>
reccount = objRS.recordcount
iPageCount = objRS.PageCount
If iPageCurrent > iPageCount Then iPageCurrent = iPageCount
If iPageCurrent < 1 Then iPageCurrent = 1
If iPageCount = 0 Then
Response.Write "<p><br><table><td><font class=""titolo""><b>Non ci sono prenotazioni!!!</b></td></table></p>"
Else
objRS.AbsolutePage = iPageCurrent
iRecordsShown = 0
%> 
<table cellpadding="0" cellspacing="0" border="0">
<tr>
<td bgcolor="#006699"> 
<table width="890" border="0">
<%
cont=1
Do While iRecordsShown < iPageSize And Not objRS.EOF
Dim Rig, bg
Rig = Rig + 1
If Rig Mod 2 = 0 then
bg = "#6e8491"
 Else
bg = "#006699"  
End if  
Response.Write "<tr bgcolor = " & bg & "><td class=""padddxdx testo"">" & objRS("nome_locale") & "</td>"
Response.Write "<td class=""padddxdx testo"">" & objRS("image") & "</td>"
'altre td....
Cont = Cont + 1
iRecordsShown = iRecordsShown + 1
objRS.MoveNext
Loop
objRS.Close
Set objRS = Nothing
%>

Poi c'è il codice che manda avanti le pagine e la chiusura di connessione al db.
Perchè mi dice aregomeni in conflitto nella riga in blu?
Come posso evitare questo errore?
Grazie
Modificato da milanopleasure il 24 settembre 2004 17.25 -

Grazie :)
5 messaggi dal 05 giugno 2003
 Devi Usare l'oggetto OLEDB 4.0 e non la versione 3.5
Ciao

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.