Aquí está el código por el cual podemos realizar esta funcionalidad.
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="WebForm1.aspx.cs" Inherits="Stylingfrorm.WebForm1" %>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Desactivar Cortar, Copiar y Pegar en Textbox Usando jQuery, JavaScript en Asp.Net</title> </head>
<body >
<form id="form1" runat="server">
<div>
<h3>Desactivar Cortar, Copiar y Pegar</h3><br />
<asp:TextBox ID="TextBox1" runat="server" Width="300px" oncopy="return false;" onpaste="return false;" oncut="return false;"></asp:TextBox>
</div>
</form>
</body>
</html>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head runat="server">
<title>Desactivar Cortar, Copiar y Pegar en Textbox Usando jQuery, JavaScript en Asp.Net</title> </head>
<body >
<form id="form1" runat="server">
<div>
<h3>Desactivar Cortar, Copiar y Pegar</h3><br />
<asp:TextBox ID="TextBox1" runat="server" Width="300px" oncopy="return false;" onpaste="return false;" oncut="return false;"></asp:TextBox>
</div>
</form>
</body>
</html>
"" Si tienes dudas o quieras ampliar este artículo, lo puedes hacer dejando tus comentarios. Además, si lo consideras interesante puedes compartirlo con amigos y seguidores a través de los botones sociales que aparecen en esta página.""
funciona en todos los navegadores??
ResponderEliminarHola, anónimo, hasta ahora me funciona en todos los navegadores, gracias.
ResponderEliminar