Input tag in HTML
-
I have an input tag in HTML page, I want the user enter a number not alphabel letter. I'm in dark, Please help me, thanks NPS
Use javascript.
<!-- function CheckNumericMaskValue(maskControl, evt) { if (((evt.keyCode < 48) || (evt.keyCode > 57)) && (evt.keyCode != 46)) { evt.keyCode = 0; } } -->
From asp.net page I had written a server control for it, if you want I can send it to you. -
Use javascript.
<!-- function CheckNumericMaskValue(maskControl, evt) { if (((evt.keyCode < 48) || (evt.keyCode > 57)) && (evt.keyCode != 46)) { evt.keyCode = 0; } } -->
From asp.net page I had written a server control for it, if you want I can send it to you. -
I thanks a lot! Can you send it to me? Because I'm in dark. I need your helping. Thanks. NPS.
What is your email id ? These are simple controls with source code in C#. Don't know if they are of very high quality ;-), but they should work.