Numeric TextBox code on HTML Onkeypress event

The following code is use for asp.net text to block the alphabetic characters and only numeric characters are by this.
you can write the following code on textbox OnKeyPress event


onkeypress="if (event.keyCode <> 57 || event.keyCode == 47) event.returnValue = false;"

Monday, April 13, 2009

0 Comments: