DropDownList.RaisePostDataChangedEvent Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Raises events for the DropDownList control when postback occurs.
protected:
virtual void RaisePostDataChangedEvent();
protected virtual void RaisePostDataChangedEvent ();
abstract member RaisePostDataChangedEvent : unit -> unit
override this.RaisePostDataChangedEvent : unit -> unit
Protected Overridable Sub RaisePostDataChangedEvent ()
Remarks
The ASP.NET page framework calls the RaisePostDataChangedEvent method on a DropDownList control when the LoadPostData method indicates that the state of the list items has changed in the DropDownList control. The RaisePostDataChangedEvent method calls the OnSelectedIndexChanged method to raise the SelectedIndexChanged event. Control developers can override the OnSelectedIndexChanged method to perform custom processing when the user selects items in the control.