<%
if not theRes.eof then
dim k
dim borneSup
' borneSup est le nb d'enreg par colonne
borneSup=10
theRes.movefirst
do while not theRes.eof
k=k+1
if (k<=borneSup) then
theNom = theRes("nomEn")
theNb = see(theNom,nbElement)
if len(theNb)>0 then
response.write ""& theNom &" "& theNb &"
"
else
response.write ""&theNom&"
"
end if
end if
theRes.movenext
loop
theRes.movefirst
end if%> |
|
 |
<%
if not theRes.eof then
k=0
theRes.movefirst
do while not theRes.eof
k=k+1
if (k>borneSup) then
theNom = theRes("nomEn")
theNb = see(theNom,nbElement)
if len(theNb)>0 then
response.write ""& theNom &" "& theNb &"
"
else
response.write ""&theNom&"
"
end if
end if
theRes.movenext
loop
theRes.close
set theRes = nothing
end if%> |
|