Processes the postback data for the System.Web.UI.HtmlControls.HtmlSelect control.
true if the System.Web.UI.HtmlControls.HtmlSelect control's state has changed as a result of a postback; otherwise, false.
The HtmlSelect.LoadPostData(string, System.Collections.Specialized.NameValueCollection) method checks whether the postback data of the System.Web.UI.HtmlControls.HtmlSelect control is different from its previous value, and if so, returns true. If the System.Web.UI.HtmlControls.HtmlSelect control's HtmlSelect.Multiple property is false, indicating a single-selection System.Web.UI.HtmlControls.HtmlSelect control, then the HtmlSelect.LoadPostData(string, System.Collections.Specialized.NameValueCollection) method checks the HtmlSelect.SelectedIndex property. If the System.Web.UI.HtmlControls.HtmlSelect control's HtmlSelect.Multiple property is true, indicating a multiple-selection System.Web.UI.HtmlControls.HtmlSelect control, then the HtmlSelect.LoadPostData(string, System.Collections.Specialized.NameValueCollection) method checks the HtmlSelect.SelectedIndices property.
The HtmlSelect.LoadPostData(string, System.Collections.Specialized.NameValueCollection) method is used primarily by control developers extending the functionality of the System.Web.UI.HtmlControls.HtmlSelect control.