Click here to Skip to main content
Click here to Skip to main content

Text box to accept only number

By , 23 Apr 2011
 
<HTML>
   <HEAD>
   <SCRIPT language="Javascript">
      
      function isNumberKey(evt)
      {
         var charCode = (evt.which) ? evt.which : event.keyCode
         if (charCode > 31 && (charCode < 48 || charCode > 57))
            return false;
 
         return true;
      }
      
   </SCRIPT>
   </HEAD>
   <BODY>
      <INPUT id="txtChar" onkeypress="return isNumberKey(event)" type="text" name="txtChar">
   </BODY>
</HTML>
 
Just paste the Script Section in the Head section and in on key press call the function.
For C#, just paste the following code:
 
function allownumbers(e) {
        var key = window.event ? e.keyCode : e.which;
        var keychar = String.fromCharCode(key);
        var reg = new RegExp("[0-9.]")
        if (key == 8) {
            //alert(key);
            keychar = String.fromCharCode(key);
        }

And in PageLoad:
txtNum.Attributes.Add("onkeypress", "javascript:return allownumbers(event);");

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)

About the Author

Prasanta_Prince
Software Developer India
India India
Member
http://devcorners.com/
Total DotNet/Programming Solution
 
I am Prasanta Banerjee. I am an Asp.Net Developer. My site: http://devcorners.com/
Email: prasanta.it@hotmail.com
If any body wants to prepare for interview http://guru-code.blogspot.com/ is the good site.

Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
Hint: For improved responsiveness ensure Javascript is enabled and choose 'Normal' from the Layout dropdown and hit 'Update'.
You must Sign In to use this message board.
Search this forum  
    Spacing  Noise  Layout  Per page   
QuestionGood SolutionmemberAlireza_136220 Mar '13 - 22:24 
GeneralMy vote of 2memberniubay11 Sep '12 - 3:31 
GeneralRe: by small digits I mean something like: 1.2345, 6.78 etc I ...memberUnruled Boy24 Apr '11 - 12:14 
GeneralRe: Agreed. Something like this regular expression /^-?[0-9]+(\....memberdanlobo29 Dec '11 - 23:32 
Agreed. Something like this regular expression
/^-?[0-9]+(\.[0-9]{2})?$/
is not so bad to use, and at the end, gets the job done.
GeneralRe: Negative values you just have to program to allow the minus ...memberEdMan19624 Apr '11 - 3:08 
GeneralRe: The keyboard remapping just assigns different characters to ...protectorAspDotNetDev24 Apr '11 - 0:44 
GeneralRe: For starters you can remap your keyboard but also, the world...memberEdMan19623 Apr '11 - 22:57 
GeneralReason for my vote of 5 exclentmemberlovepreet_shota18 Jun '11 - 17:15 
GeneralThis is all well and good unless of course my keyboards numb...memberEdMan19623 Apr '11 - 2:40 
GeneralRe: What do you mean? How would your keyboard number keys use di...protectorAspDotNetDev23 Apr '11 - 18:51 
GeneralRe: what if small digits or negative values? I think using regex...memberUnruled Boy24 Apr '11 - 3:05 
GeneralExplanation neededsubeditorIndivara18 Apr '11 - 12:05 
GeneralRe: Explanation neededmemberpashad27 Dec '11 - 18:52 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Rant Rant    Admin Admin   

Permalink | Advertise | Privacy | Mobile
Web01 | 2.6.130516.1 | Last Updated 23 Apr 2011
Article Copyright 2011 by Prasanta_Prince
Everything else Copyright © CodeProject, 1999-2013
Terms of Use
Layout: fixed | fluid