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>
You should use a
ToolkitScriptManagerinstead of aScriptManagerYou could also try
ValidCharsinstead ofFilterType