如何使用 Spring.net 验证输入长度?

发布于 2024-11-28 14:23:06 字数 312 浏览 1 评论 0原文

我找不到任何关于如何使用 Spring.net 验证输入字段长度的好信息,但它一定是可能的。这是我尝试过的:

<v:condition test="string.Length(InputField) > 2000" >
  <v:message id="Errors.TooLong2000" providers="InputField"/>
</v:condition>

但是,Spring 无法解析它。任何帮助表示赞赏!

I cannot find any good information on how to validate input field length with Spring.net, but it must be possible. Here is what I have tried:

<v:condition test="string.Length(InputField) > 2000" >
  <v:message id="Errors.TooLong2000" providers="InputField"/>
</v:condition>

But, that fails to get parsed by Spring. Any help is appreciated!

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

少女净妖师 2024-12-05 14:23:06

假设您的 Value 属性名为 Text

<v:condition test="InputField.Text.Length <= 2000" when="InputField.Text != null">
  <v:message id="Errors.TooLong2000" providers="InputField"/>
</v:condition>

Assuming that your Value property is called Text:

<v:condition test="InputField.Text.Length <= 2000" when="InputField.Text != null">
  <v:message id="Errors.TooLong2000" providers="InputField"/>
</v:condition>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文