您的位置:首页 > 编程语言 > ASP

Asp.net中禁止文本框TextBox中输入非数字

2013-12-14 21:03 288 查看
思路:
通过给TextBox添加onkeyup事件方式,使用正则表达式替换文库框中的非数字。

前台代码:

数字:<asp:TextBox ID="txt1" runat="server"></asp:TextBox>

后台代码:

protected void Page_Load(object sender, EventArgs e)
{

txt1.Attributes.Add("onkeyup", "value=value.replace(/[^\\d]/g,'')");
}
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息