This documentation is for a previous version. For the current released version, see the ASP.NET Ajax documentation on MSDN.
Represents a collection of UpdatePanelTrigger objects for an UpdatePanel control.
[AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal)] [AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal)] public class UpdatePanelTriggerCollection : Collection<UpdatePanelTrigger>
<AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level := AspNetHostingPermissionLevel.Minimal)> _ <AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level := AspNetHostingPermissionLevel.Minimal)> _ Public Class UpdatePanelTriggerCollection _ Inherits Collection(Of UpdatePanelTrigger)
[AspNetHostingPermissionAttribute(SecurityAction::InheritanceDemand, Level = AspNetHostingPermissionLevel::Minimal)] [AspNetHostingPermissionAttribute(SecurityAction::LinkDemand, Level = AspNetHostingPermissionLevel::Minimal)] public ref class UpdatePanelTriggerCollection : public Collection<UpdatePanelTrigger^>
/** @attribute AspNetHostingPermissionAttribute(SecurityAction.InheritanceDemand, Level = AspNetHostingPermissionLevel.Minimal) */ /** @attribute AspNetHostingPermissionAttribute(SecurityAction.LinkDemand, Level = AspNetHostingPermissionLevel.Minimal) */ public class UpdatePanelTriggerCollection extends Collection<UpdatePanelTrigger>
Triggers in the UpdatePanelTrigger collection are specified by using the UpdatePanelTrigger Collection Editor in the designer or by adding them declaratively as <Triggers> elements inside the UpdatePanel control. You can add two types of triggers:
An AsyncPostBackTrigger object that can be used to specify that a control can cause an asynchronous postback and refresh the update panel's contents. The AsyncPostBackTrigger object is used for controls outside an update panel or controls that are not immediate child controls of an UpdatePanel control.
A PostBackTrigger object that can be used to specify that a postback control inside an UpdatePanel control can cause a synchronous postback and a full-page refresh.
for operating in a hosted environment. Demand value: LinkDemand. Permission value: Minimal.
for operating in a hosted environment. Demand value: InheritanceDemand. Permission value: Minimal.
Object
Collection<(Of UpdatePanelTrigger>)
UpdatePanelTriggerCollection
Assembly: System.Web.Extensions (Module: System.Web.Extensions)
Copyright © 2005 - 2007 Microsoft Corporation. All rights reserved.