LinkButton.Command (Evento)
Ensamblado: System.Web (en system.web.dll)
Cuando se hace clic en el control LinkButton se provoca el evento Command. Este evento suele utilizarse cuando hay un nombre de comando asociado al control LinkButton como, por ejemplo, Sort. Esto permite crear varios controles LinkButton en una página Web y determinar mediante programación en qué control LinkButton se hace clic.
Nota: |
|---|
| El evento Command se provoca mediante la jerarquía de controles, con el formato de BubbleEvent. |
Para obtener más información sobre control de eventos, vea Utilizar eventos.
En el siguiente ejemplo se muestra cómo especificar y crear código de controlador para el evento Click de modo que se muestre un mensaje cuando se haga clic en el control LinkButton.
<%@ Page Language="C#" AutoEventWireup="True" %> <!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> <title>LinkButton Command Event Example</title> <script language="C#" runat="server"> void LinkButton_Command(Object sender, CommandEventArgs e) { Label1.Text = "You chose: " + e.CommandName + " Item " + e.CommandArgument; } </script> </head> <body> <form id="form1" runat="server"> <h3>LinkButton Command Event Example</h3> <asp:LinkButton id="LinkButton1" Text="Order Item 10001" CommandName="Order" CommandArgument="10001" OnCommand="LinkButton_Command" runat="server"/> <br /> <asp:LinkButton id="LinkButton2" Text="Order Item 10002" CommandName="Order" CommandArgument="10002" OnCommand="LinkButton_Command" Runat="server"/> <br /> <br /> <asp:Label id="Label1" runat="server"/> </form> </body> </html>
Windows 98, Windows 2000 Service Pack 4, Windows CE, Windows Millennium, Windows Mobile para Pocket PC, Windows Mobile para Smartphone, Windows Server 2003, Windows XP Media Center, Windows XP Professional x64, Windows XP SP2, Windows XP Starter
Microsoft .NET Framework 3.0 es compatible con Windows Vista, Microsoft Windows XP SP2 y Windows Server 2003 SP1.
Nota: