24 messaggi dal 24 maggio 2005
''''''''''''''''''''''''
questo è il mio file
'''''''''''''''''''''''''


<% if session("sezione") <> " " then

strsql = "SELECT IMPRESE.Sezione, IMPRESE.Sottosezione, IMPRESE.Ateco91 FROM IMPRESE"
strsql = strsql & "WHERE IMPRESE.Sezione in ("&session("Sezione") & ") OR IMPRESE.Sottosezione in (" & session("Sotto_Sez") & ")"

end if
%>


<html>
<head>
<title> tabella.asp </title>
</head>

<body>
<table border="2">

<tr>
<td> tabella creata </td>
</tr>

while not rs EOF
<tr>
<td> <% = rs ("Ateco91,Sezione,Sottosezione")%> </td>
</tr>

<%
rs.movenext
wend
rs.close

%>

</table>
<body>
</html>


'''''''''''''''
questo è il mio errore

Tipo di errore:
Errore di compilazione di Microsoft VBScript (0x800A0400)
Prevista istruzione
/mirco2/framebasso/tabella.asp, line 30
wend


Grazie in anticipo a tutti per la pazienza.
Ciao.
Mirco
593 messaggi dal 09 ottobre 2002
www.dotnetside.org
Vai alla riga in cui hai:
while not rs EOF

e modificala in:
<%
while not rs.EOF
%>

Ciao

Pochi post. Anzi, quasi quasi spengo
http://www.dotnetside.org/
24 messaggi dal 24 maggio 2005
corretto ma non va lo stesso.....ma da lo stesso errore
281 messaggi dal 05 agosto 2004
Posta il codice che hai corretto, così possiamo vedere se è ok.

Che lo sforzo sia con te!!!
24 messaggi dal 24 maggio 2005
'''codice corretto...grazie ancora..davvero'''





<% if session("sezione") <> " " then

strsql = "SELECT IMPRESE.Sezione, IMPRESE.Sottosezione, IMPRESE.Ateco91 FROM IMPRESE"
strsql = strsql & "WHERE IMPRESE.Sezione in ("&session("Sezione") & ") OR IMPRESE.Sottosezione in (" & session("Sotto_Sez") & ")"

end if
%>


<html>
<head>
<title> tabella.asp </title>
</head>

<body>
<table border="2">

<tr>
<td> tabella creata </td>
</tr>

while not rs.eof
<tr>
<td> <% = rs ("Ateco91,Sezione,Sottosezione")%> </td>
</tr>

<%
rs.movenext
wend
rs.close
%>

</table>
<body>
</html>
24 messaggi dal 24 maggio 2005
ah...da lo stesso errore di prima...sul wend si aspetta un'istruzione..
3.122 messaggi dal 16 maggio 2002
Non hai corretto un bel niente, fai come ti ha detto vitosulla.

The day Microsoft makes something that doesn't suck
is probably the day they start making vacuum cleaners.

Get caught!
Get caught again!
24 messaggi dal 24 maggio 2005
ok scusa
ora lo corretto
ma da errore comunque



<% if session("sezione") <> " " then

strsql = "SELECT IMPRESE.Sezione, IMPRESE.Sottosezione, IMPRESE.Ateco91 FROM IMPRESE"
strsql = strsql & "WHERE IMPRESE.Sezione in ("&session("Sezione") & ") OR IMPRESE.Sottosezione in (" & session("Sotto_Sez") & ")"

end if
%>


<html>
<head>
<title> tabella.asp </title>
</head>

<body>
<table border="2">

<tr>
<td> tabella creata </td>
</tr>

<% while not rs.eof
%>
<tr>
<td> <% = rs ("Ateco91,Sezione,Sottosezione")%> </td>
</tr>

<%
rs.movenext
wend
rs.close
%>

</table>
<body>
</html>

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.