验证 ASP.Net 文本框不为空但允许空格?
我有一个 ASP.Net 2.0 文本框,我需要验证它是否具有一些内容,但其中空格本身就是有效输入。
必填字段验证器似乎将纯空白输入视为无效而拒绝。正则表达式验证器根本不会对空内容触发。
有没有比使用自定义验证器控件更简单的方法来解决这个问题?
I have an ASP.Net 2.0 textbox which I need to be validated as having some content, but where whitespace alone is valid input.
A required field validator seems to reject a pure whitespace input as invalid. A regular expression validator won't fire at all on empty content.
Is there a simpler way round this than using a custom validator control?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
有几个选项,但都不使用 automagic FUD。
我想不出任何其他选择。
There are a couple of options, neither which use the automagic FUD.
I can't think of any other options.