Button.CommandArgument Property
.NET Framework 3.0
Gets or sets an optional parameter passed to the Command event along with the associated CommandName.
Namespace: System.Web.UI.WebControls
Assembly: System.Web (in system.web.dll)
Assembly: System.Web (in system.web.dll)
[BindableAttribute(true)] [ThemeableAttribute(false)] 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)
Not applicable.
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 Introduction to ASP.NET Themes.
Community Additions
ADD
Show:
Note: