
07/03/2008, 10:03
|
 | Colaborador | | Fecha de Ingreso: septiembre-2007 Ubicación: San Francisco, United States
Mensajes: 3.858
Antigüedad: 17 años, 7 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 |