<%
id = array(1,2,2,3,4,5,6,6,7,8,9,9,3,10,10,11,12)



for i = 0 to ubound(id)

if i >= ubound(id) then

response.write id(i)

response.end

end if

if id(i) = id(i+1) then

response.write id(i) & " ok
" & id(i+1) & " ok
"

i = i + 1

else

response.write id(i) & "
"


end if

Next

%>