ObjectList.DefaultCommand Property

Definition

Gets or sets the name of the default command. This API is obsolete. For information about how to develop ASP.NET mobile applications, see Mobile Apps & Sites with ASP.NET.

public:
 property System::String ^ DefaultCommand { System::String ^ get(); void set(System::String ^ value); };
[System.ComponentModel.Bindable(true)]
[System.ComponentModel.TypeConverter(typeof(System.Web.UI.Design.MobileControls.Converters.DefaultCommandConverter))]
public string DefaultCommand { get; set; }
[<System.ComponentModel.Bindable(true)>]
[<System.ComponentModel.TypeConverter(typeof(System.Web.UI.Design.MobileControls.Converters.DefaultCommandConverter))>]
member this.DefaultCommand : string with get, set
Public Property DefaultCommand As String

Property Value

The name of the default command.

Attributes

Remarks

When set, the ObjectList control attempts to render a shortcut to invoke the default command. In HTML, the default rendering in list view displays the first field as a link to the details view of the ObjectList. When the DefaultCommand property is set, clicking the link invokes the default command. Invoking the default command raises the ItemCommand event. The CommandName of the ObjectListCommandEventArgs object is set to the value of the DefaultCommand property.

Even if a default command is defined, you should include a command with the same name in the commands collection. If the control cannot render a graphical element that includes a shortcut for the default command, the default command is still available through the rendering of the ObjectList commands collection.

Applies to

See also