Button::CommandArgument Property
Gets or sets an optional parameter passed to the Command event along with the associated CommandName.
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:Button CommandArgument="String" />
Property Value
Type: System::StringAn optional parameter passed to the Command event along with the associated CommandName. The default value is String::Empty.
Implements
IButtonControl::CommandArgumentUse 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 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: