Ajax FilteredTextBox 扩展器不起作用

发布于 2024-10-31 08:13:28 字数 532 浏览 0 评论 0原文

我所做的一切都是正确的,并且没有显示任何错误。我只想允许用户输入数字,但它允许所有字符。
这是我的来源

<asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:FilteredTextBoxExtender ID="FilteredTextBoxExtender1" runat="server" TargetControlID="TextBox1" FilterType="Numbers">
        </asp:FilteredTextBoxExtender>
        <asp:Label ID="Label1" runat="server" Text="Phone No"></asp:Label>
&nbsp;<asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

I did everything correct and its not showing me any error. I just want to allow user to enter numbers but its allowing all the characters.
Here is my source

<asp:ScriptManager ID="ScriptManager1" runat="server">
        </asp:ScriptManager>
        <asp:FilteredTextBoxExtender ID="FilteredTextBoxExtender1" runat="server" TargetControlID="TextBox1" FilterType="Numbers">
        </asp:FilteredTextBoxExtender>
        <asp:Label ID="Label1" runat="server" Text="Phone No"></asp:Label>
 <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox>

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

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

发布评论

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

评论(2

不知在何时 2024-11-07 08:13:28

您应该使用 ToolkitScriptManager 而不是 ScriptManager

您也可以尝试 ValidChars 而不是 FilterType

<asp:FilteredTextBoxExtender ID="FilteredTextBoxExtender1" runat="server" 
                             TargetControlID="TextBox1" ValidChars="0123456789.,">
</asp:FilteredTextBoxExtender>

You should use a ToolkitScriptManager instead of a ScriptManager

You could also try ValidChars instead of FilterType

<asp:FilteredTextBoxExtender ID="FilteredTextBoxExtender1" runat="server" 
                             TargetControlID="TextBox1" ValidChars="0123456789.,">
</asp:FilteredTextBoxExtender>
剪不断理还乱 2024-11-07 08:13:28

我总是使用 FilterMode="ValidChars" 或 FilterMode="InvalidChars"。
然后使用 ValidChars="0123456789.," 或 InvalidChars="0123456789.," 来完成这项工作

<asp:FilteredTextBoxExtender 
        ID="FilteredTextBoxExtender1" 
        runat="server" 
        TargetControlID="TextBox1" 
        FilterMode="ValidChars"
        ValidChars="0123456789.,">
</asp:FilteredTextBoxExtender>

I always use FilterMode="ValidChars" or FilterMode="InvalidChars".
Then use the ValidChars="0123456789.," or InvalidChars="0123456789.," to do the job

<asp:FilteredTextBoxExtender 
        ID="FilteredTextBoxExtender1" 
        runat="server" 
        TargetControlID="TextBox1" 
        FilterMode="ValidChars"
        ValidChars="0123456789.,">
</asp:FilteredTextBoxExtender>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文