Ver Mensaje Individual
  #2 (permalink)  
Antiguo 26/05/2006, 12:05
Avatar de trasgukabi
trasgukabi
 
Fecha de Ingreso: septiembre-2004
Mensajes: 2.749
Antigüedad: 20 años, 7 meses
Puntos: 18
suponiendo que el valor que le des al check sea 1

Código:
For Each temp in request.Form("ch_delete_image")
if request.Form("ch_delete_image")="1" then
sql="Update " & tabla & " set Image_file =null where Image_file='" & temp & "'"
objCon.execute(sql)
end if
Next