PostBackTrigger Class
Defines a control inside a UpdatePanel control as a postback control.
System.Web.UI::UpdatePanelTrigger
System.Web.UI::UpdatePanelControlTrigger
System.Web.UI::PostBackTrigger
Assembly: System.Web.Extensions (in System.Web.Extensions.dll)
The PostBackTrigger type exposes the following members.
| Name | Description | |
|---|---|---|
![]() | ControlID | Gets or sets the name of the control that is an PostBackTrigger control for an UpdatePanel control. |
![]() | Owner | Gets a reference to the UpdatePanel control that the UpdatePanelTrigger targets. (Inherited from UpdatePanelTrigger.) |
| Name | Description | |
|---|---|---|
![]() | Equals(Object) | Determines whether the specified Object is equal to the current Object. (Inherited from Object.) |
![]() | Finalize | Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) |
![]() | FindTargetControl | Searches for the control specified in the ControlID property. (Inherited from UpdatePanelControlTrigger.) |
![]() | GetHashCode | Serves as a hash function for a particular type. (Inherited from Object.) |
![]() | GetType | Gets the Type of the current instance. (Inherited from Object.) |
![]() | HasTriggered | Returns a value that indicates whether the trigger was activated. (Overrides UpdatePanelTrigger::HasTriggered().) |
![]() | Initialize | Initializes the PostBackTrigger object. (Overrides UpdatePanelTrigger::Initialize().) |
![]() | MemberwiseClone | Creates a shallow copy of the current Object. (Inherited from Object.) |
![]() | ToString | Returns a string that represents the current PostBackTrigger object. (Overrides Object::ToString().) |
Use the PostBackTrigger control to enable controls inside an UpdatePanel to cause a postback instead of performing an asynchronous postback.
Use the RegisterPostBackControl method of the ScriptManager control to programmatically register a postback control. You can then call the Update method of the UpdatePanel control when the trigger control performs a postback.
Note |
|---|
Programmatically adding PostBackTrigger controls is not supported. |
If a control is set as both a PostBackTrigger and AsyncPostBackTrigger control, an exception is thrown.
The following example shows how to declaratively define a PostBackTrigger control for an UpdatePanel control. In the panel, a FileUpload control enables users to upload a file. Users must first check whether the file to upload exists. The Button control that calls the event handler to check the file name causes an asynchronous postback. However, the Button control that uploads the file is registered as a PostBackTrigger, because files cannot be uploaded asynchronously.
Windows 7, Windows Vista SP1 or later, Windows XP SP3, Windows Server 2008 (Server Core not supported), Windows Server 2008 R2 (Server Core supported with SP1 or later), Windows Server 2003 SP2
The .NET Framework does not support all versions of every platform. For a list of the supported versions, see .NET Framework System Requirements.



Note