asp.net 中的 MaskedEditExtender
如何将MaskedEditExtender 用于应该接受网站地址的文本框? 谢谢
How can I useMaskedEditExtender for textbox that should accept address of website?
thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
为什么要使用
MaskedEdit
? 我将使用带有RegularExpressionValidator
的文本框。MaskedEdit
适用于数据域中具有固定格式的数据。 例如,SSID 的格式始终为000-00-0000
,电话号码(美国)为(000) 000-0000
,新的邮政编码为 <代码>00000-0000。 等等...不适用于各种格式,例如由 RFC 管理的 URL。
Why would you use an
MaskedEdit
? I'd use a Textbox with aRegularExpressionValidator
.MaskedEdit
is good for data that has a fixed format across your data domain. For instance the SSID is always in the format000-00-0000
, a phone number (in U.S.) is(000) 000-0000
, the new zip code is00000-0000
. and so forth...Not for a wide variant of formats like an URL, which is governed by an RFC.