Button.CommandArgument 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; }
/** @property */ public final String get_CommandArgument () /** @property */ public final void set_CommandArgument (String value)
public final function get CommandArgument () : String public final function set CommandArgument (value : String)
Property Value
An optional parameter passed to the Command event along with the associated CommandName. The default value is String.Empty.Use the CommandArgument property to specify a parameter that compliments the CommandName property.
Note |
|---|
| Although you can set the CommandArgument property by itself, it is normally only used when the CommandName property is also set. |
The CommandArgument property complements the CommandName property by allowing you to provide additional information about the command to perform. For example, if you set the CommandName property to Sort and the CommandArgument property to Ascending, you 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.
Windows 98, Windows 2000 SP4, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.
Note