LinkButton::CommandArgument Property

 

Gets or sets an optional argument passed to the Command event handler along with the associated CommandName property.

Namespace:   System.Web.UI.WebControls
Assembly:  System.Web (in System.Web.dll)

public:
[BindableAttribute(true)]
[ThemeableAttribute(false)]
property String^ CommandArgument {
	virtual String^ get() sealed;
	virtual void set(String^ value) sealed;
}

Property Value

Type: System::String^

An optional argument passed to the Command event handler along with the associated CommandName property. The default value is String::Empty.

Use the CommandArgument property to specify an argument that complements the CommandName property.

System_CAPS_noteNote

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.

The following example demonstrates how to use the CommandArgument property to specify an optional argument that complements the command name for a LinkButton control.

No code example is currently available or this language may not be supported.

.NET Framework
Available since 1.1
Return to top
Show: