Haz una prueba de escritorio con esto
Código PHP:
<%
dim rs_ofertes, valorId
valorId = request.form(v_entrada2)
Set rs_ofertes = Server.CreateObject("ADODB.Recordset")
rs_ofertes.ActiveConnection = conn_sumer
rs_ofertes.Source = "SELECT * FROM ofertes where oferta_id IN ("
for each v_entrada2 in request.form
for indice=1 to valorId.count
if v_entrada2 <> "Submit" then
if indice <> 1 then
response.write " ,"
end if
rs_ofertes.Source = rs_ofertes.Source & "&valorId(indice)&"
else
end if
next
next
rs_ofertes.Source = rs_ofertes.Source & ") ORDER BY oferta_id"
rs_ofertes.CursorType = 0
rs_ofertes.CursorLocation = 2
rs_ofertes.LockType = 1
rs_ofertes.Open()
%>
Suerte