Ver Mensaje Individual
  #3 (permalink)  
Antiguo 07/03/2008, 10:03
Avatar de Peterpay
Peterpay
Colaborador
 
Fecha de Ingreso: septiembre-2007
Ubicación: San Francisco, United States
Mensajes: 3.858
Antigüedad: 17 años, 5 meses
Puntos: 87
Re: Como usar el enter

hola orcobon

mas q un problema de asp net solo necesitas agregar codigo cliente q capture el enter y te lleve al siguiente control

y en el body agregar onkeydown="CheckKey(event);"


function CheckKey() {
if (event.keyCode == 13) {
document.getElementById("sigcontrol").focus();
}
}

a esto hay q hacer algunos cambios pero la idea es esa