Ver Mensaje Individual
  #1 (permalink)  
Antiguo 25/11/2003, 18:45
imontalvo
 
Fecha de Ingreso: octubre-2003
Mensajes: 2
Antigüedad: 21 años, 5 meses
Puntos: 0
Mensaje alguien sabe???

ALGUIEN SABE DONDE ENCUENTRO UN EJEMPLO DE ACTUALIZACION DE FORMULARIOS CON COMBO BOX DESDE UNA BASE DE DATOS EN ASP???

SE LOS AGRADECERE MUCHO

DESDE php SE HARIA ASI:


<? while ($row4 = mysql_fetch_array($res4))
{
echo "<option value='".$row4[id_sector]."'";
if($id_sector==$row4[id_sector])
echo " selected";
echo ">".$row4[sector]."</option>\n";
}
?>
¿PERO EN asp?