在 html 输入控件上使用 aspnet 范围验证器

发布于 2024-08-11 01:23:12 字数 131 浏览 2 评论 0原文

我正在用 C# 构建一个小型 Web 应用程序。 我正在使用范围验证器,我想将其绑定到具有 runat="server" 属性的 html 控件。

由于某种原因,它不会绑定,也不会对控件的内容执行任何检查。你们中有人知道该怎么做吗?

I am building a small web application in c#.
I am using the range validator and I want to bind it to an html control that has the runat="server" attribute to it.

From some reason it won't bind and won't perform any check for the content of the control. Does any of you have an idea what to do?

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

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

发布评论

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

评论(1

我恋#小黄人 2024-08-18 01:23:12

根据 MSDN 中的此链接,它应该可以工作

    <td>
       <asp:RangeValidator id="id" runat="server" ErrorMessage="not 2"
       ControlToValidate="txtbx_value" MaximumValue="3" MinimumValue="1" 
       Type="Integer"> </asp:RangeValidator>
    </td>
    <td>User ID:</td>
    <td><input type=text runat=server id=txtbx_value></td>

Based on this link from MSDN it should work

    <td>
       <asp:RangeValidator id="id" runat="server" ErrorMessage="not 2"
       ControlToValidate="txtbx_value" MaximumValue="3" MinimumValue="1" 
       Type="Integer"> </asp:RangeValidator>
    </td>
    <td>User ID:</td>
    <td><input type=text runat=server id=txtbx_value></td>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文