You can only enter numbers in the text box of the control template column and disable pasting.

Source: Internet
Author: User

Method 1:
JavaScript Functions that control input numbers in HTML
Function limitnumber (OBJ)
{
OBJ. maxlength = 20;
If (! (Window. event. keycode> = 48) & (window. event. keycode <= 57 ))
| (Window. event. keycode = 46) | (window. event. keycode = 45 )))
{
Window. event. keycode = 0;
}
}

In the template Column
<Asp: textboxOnkeypress = "limitnumber ('txtsqf')" onpaste = "Return false"Id = txtsqf
Runat = "server" width = "50px" text = '<% # databinder. eval (container, "dataitem. sqf") %>'>
Method 2:
Because method 1 cannot avoid Chinese Input problems, it still needs to be improved. Method 2: the server-side controls are implemented in a simple way. Add the regularexpressionvalidator control to the text box in the template column. The regular expression is ^ (-? \ D +) (\. \ D + )? $.

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.