zoukankan      html  css  js  c++  java
  • 验证TextBox只输入数字

    <asp:textbox class="Text"
            onkeypress="if (event.keyCode < 48 || event.keyCode >57) event.returnValue = false;"
     id="txtY_Revenue" style="TEXT-ALIGN: right" runat="server" Width="90%" MaxLength="12">
        </asp:textbox>

    或者:

     if (Tbx_Edition.Text != "")
            {
                bool a1=true;
                foreach(char c in Tbx_Edition.Text)
                {
                    if(char.IsNumber(c))
                    {
                        continue;
                    }
                    else if(c=='.')
                    {
                        continue;
                    }
                    else
                    {
                        a1 = false;
                        break;
                    }
                }

    }

  • 相关阅读:
    遥控器拆卸记录
    计算器拆卸记录
    no matching constructor for initialization
    STL
    排序方法
    二叉树之广度优先遍历
    C++之queue学习记录
    方向电路
    站间联系电路
    求二叉树的最大深度
  • 原文地址:https://www.cnblogs.com/hyd309/p/1282689.html
Copyright © 2011-2022 走看看