在 asp.net 中向 TextBox 添加格式
我需要格式化一个 asp.net 文本框,使其仅接受
### - ### - ###
(#:numerics 形式的用户输入仅)。
请提出建议或答案。
I need to format an asp.net text box in such a way that it accepts the user input only in the form of
### - ### - ###
(#:numerics only).
Suggestions or answers please.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
MaskedEdit 可能就是您要找的。
这是上面链接的修改示例:
MaskedEdit might be what you're looking for.
Here is an modified example from the link above:
使用jquery屏蔽文本框屏蔽输入插件1.2.2
use jquery masked text box Masked Input Plugin 1.2.2
您可以使用 MaskedEdit ajax 控件。MaskedEdit
是一个 ASP.NET AJAX 扩展程序,它附加到 TextBox 控件以限制可以输入的文本类型。 MaskedEdit 对输入应用“掩码”,仅允许输入某些类型的字符/文本。支持的数据格式有:数字、日期、时间和日期时间。
请点击此链接了解详细信息:
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/MaskedEdit/MaskedEdit.aspx
You can use MaskedEdit ajax control..
MaskedEdit is an ASP.NET AJAX extender that attaches to a TextBox control to restrict the kind of text that can be entered. MaskedEdit applies a "mask" to the input that permits only certain types of characters/text to be entered. The supported data formats are: Number, Date, Time, and DateTime.
follow this link for details:
http://www.asp.net/ajaxLibrary/AjaxControlToolkitSampleSite/MaskedEdit/MaskedEdit.aspx
您可以按照 DeveloperX 的建议使用 jQuery,也可以使用 AjaxControlToolkit 中的 MaskedEditExtender 。
You can either use jQuery as suggested by DeveloperX or use the MaskedEditExtender from AjaxControlToolkit.