LinkButton::CommandArgument Property
Gets or sets an optional argument passed to the Command event handler along with the associated CommandName property.
Assembly: System.Web (in System.Web.dll)
[ThemeableAttribute(false)] [BindableAttribute(true)] public: virtual property String^ CommandArgument { String^ get () sealed; void set (String^ value) sealed; }
<asp:LinkButton CommandArgument="String" />
Property Value
Type: System::StringAn optional argument passed to the Command event handler along with the associated CommandName property. The default value is String::Empty.
Implements
IButtonControl::CommandArgumentUse the CommandArgument property to specify an argument that complements the CommandName property.
Note: |
|---|
The CommandArgument property is typically only used when the CommandName property is set. |
The CommandArgument property complements the CommandName property by allowing you to provide any additional information about the command to perform. For example, you can set the CommandName property to Sort and set the CommandArgument property to Ascending to specify a command to sort in ascending order.
This property cannot be set by themes or style sheet themes. For more information, see ThemeableAttribute and ASP.NET Themes and Skins Overview.
The following example demonstrates how to use the CommandArgument property to specify an optional argument that complements the command name for a LinkButton control.
Windows 7, Windows Vista, Windows XP SP2, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP Starter Edition, Windows Server 2008 R2, Windows Server 2008, Windows Server 2003, Windows Server 2000 SP4, Windows Millennium Edition, Windows 98
The .NET Framework and .NET Compact Framework do not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.
Note: