Showing posts with label Copy and Paste operation in ASP.Net TextBox Using jQuery. Show all posts
Showing posts with label Copy and Paste operation in ASP.Net TextBox Using jQuery. Show all posts

Thursday, September 24, 2015

Block or Disable Cut, Copy and Paste operation in ASP.Net TextBox Using jQuery

<script src="_scripts/jquery-1.4.1.min.js" type="text/javascript"></script>    
    <script type="text/javascript">
        $(function() {
        $("#<% =txtEmail.ClientID %>,#<% =txtConfirmEmail.ClientID%>").bind("cut copy paste", function(event) {
                event.preventDefault();
            });
        });
    </script>
</head>
<body>
    <form id="form1" runat="server">
    <div>    
        <b>Email </b><asp:TextBox ID="txtEmail" runat="server"></asp:TextBox><br />
        <b>Confirm Email </b><asp:TextBox ID="txtConfirmEmail" runat="server"></asp:TextBox>