Ver Mensaje Individual
  #2 (permalink)  
Antiguo 21/04/2006, 06:05
Scho
 
Fecha de Ingreso: marzo-2004
Ubicación: Valencia
Mensajes: 367
Antigüedad: 20 años, 2 meses
Puntos: 1
Saludos, lo puedes hacer con javascript:

Código:
function digitarInt(evt) {
	var nav4 = window.Event ? true : false;
	var key = nav4 ? evt.which : evt.keyCode;
	return (key <= 13 || (key >= 48 && key <= 57));
}
Y en el Page_Load
Código:
textbox1.Attributes.Add("onKeyPress", "return digitarInt(event)")
Espero que te sirva. Saludos