本文介绍了如何限制用户不要在文本框中输入其他数字的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

如何限制用户不要在文本框中输入除12以外的其他数字。

========================= ================================





i我的网页上有一个文本框,用户只能输入此文本框中的数字12。



如果他输入其他数字,则必须显示错误。



请给我一个很好的解决方案。顺便说一下我在asp.net c#上工作。



Hlep me!提前谢谢

how to restrict user not to enter other numbers in textbox except 12.
=========================================================


i have a textbox on my webpage the user should enter only the number 12 in this textbox.

if he enters other number, it must shows a error .

Please give me good solution. by the way am working on asp.net c#.

Hlep me ! thank you in advance

推荐答案


<asp:TextBox ID="TextBox7" runat="server" onkeypress="return AcceptRegExOnly(event, /^(1|2)






使用此框架。这里唯一的问题是11和22也被接受,但可以通过使用正确的正则表达式来规避。



using this framework. the only catch here is that 11 and 22 are also accepted but that can be circumvented by using a proper regex.


这篇关于如何限制用户不要在文本框中输入其他数字的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

08-12 05:42