Hello how can I disable the single quote, greater than and less than charater when typing it into textbox.
And also prevent the copy, paste that character into textbox.
Refer this article
jQuery Disable Cut Copy Paste and Drop options in HTML and ASP.Net TextBox
ASP.Net AJAX FilteredTextBoxExtender Control Example
HTML
<cc1:ToolkitScriptManager ID="ScriptManager1" runat="server"> </cc1:ToolkitScriptManager> <b>Do not allow , < and > </b> <br /> <asp:TextBox ID="TextBox1" runat="server"></asp:TextBox> <cc1:FilteredTextBoxExtender ID="FilteredTextBoxExtender1" runat="server" InvalidChars="'<>" ValidChars="0.123456789qwertyuiop[]{};,?abcdefghhijklmnopqrstuvwxyzABCDEFGHHIJKLMNOPQRSTUVWXYZ!@#$%^&*()_+/\=`~|" FilterType="Custom" TargetControlID="TextBox1" />
© COPYRIGHT 2025 ASPSnippets.com ALL RIGHTS RESERVED.