Прочитај на енглеском Уреди

Делите путем


UpdatePanel.ChildrenAsTriggers Property

Definition

Gets or sets a value that indicates whether postbacks from immediate child controls of an UpdatePanel control update the panel's content.

C#
public bool ChildrenAsTriggers { get; set; }

Property Value

true if postbacks from immediate child controls of the UpdatePanel control update the panel's content; otherwise, false. The default is true.

Remarks

Set the ChildrenAsTriggers property to true if you want postbacks from immediate child controls of the UpdatePanel control to cause an update of the panel's content. Child controls of nested UpdatePanel controls will not cause an update of the parent UpdatePanel control's content unless you call the Update method explicitly or you define the child controls as triggers.

Напомена

When the UpdateMode property is set to Always and the ChildrenAsTriggers property is set to false, an InvalidOperationException exception is thrown during the OnPreRender method. This combination of properties is not allowed for the UpdatePanel control.

A scenario where you might set ChildrenAsTriggers to false is when you have two UpdatePanel controls and you want a postback from the first panel to update the content of the second panel but not update its own content. For example, the first panel might be a list of products to buy and the second panel might be a shopping cart.

Applies to

Производ Верзије
.NET Framework 3.5, 4.0, 4.5, 4.5.1, 4.5.2, 4.6, 4.6.1, 4.6.2, 4.7, 4.7.1, 4.7.2, 4.8, 4.8.1

See also