LinkButton.CommandName (Propiedad)
Ensamblado: System.Web (en system.web.dll)
/** @property */ public final String get_CommandName () /** @property */ public final void set_CommandName (String value)
public final function get CommandName () : String public final function set CommandName (value : String)
Valor de propiedad
Nombre de comando del control LinkButton. El valor predeterminado es String.Empty.Cuando hay varios controles LinkButton en una página Web, utilice la propiedad CommandName para especificar o determinar el nombre de comando asociado al control LinkButton en el que se ha hecho clic. La propiedad CommandName puede establecerse con cualquier cadena que identifique el comando que se va a ejecutar. A continuación, se puede determinar mediante programación el nombre de comando del control LinkButton y realizar las acciones oportunas.
Se puede especificar información adicional sobre el comando, como el criterio de ordenación Ascending, mediante la propiedad CommandArgument.
Esta propiedad no se puede establecer por temas o temas de hoja de estilos. Para obtener más información, vea ThemeableAttribute y Información general sobre temas y máscaras de ASP.NET.
En el siguiente ejemplo se muestra cómo usar la propiedad CommandName para especificar un nombre de comando para un 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.