HtmlInputRadioButton.LoadPostData(String, NameValueCollection) Método

Definición

Procesa los datos de postback para el control HtmlInputRadioButton.

protected:
 virtual bool LoadPostData(System::String ^ postDataKey, System::Collections::Specialized::NameValueCollection ^ postCollection);
protected virtual bool LoadPostData (string postDataKey, System.Collections.Specialized.NameValueCollection postCollection);
abstract member LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
override this.LoadPostData : string * System.Collections.Specialized.NameValueCollection -> bool
Protected Overridable Function LoadPostData (postDataKey As String, postCollection As NameValueCollection) As Boolean

Parámetros

postDataKey
String

Identificador de clave del control.

postCollection
NameValueCollection

Colección de todos los valores de nombre entrantes.

Devoluciones

true si el estado del control HtmlInputRadioButton cambió a consecuencia del postback; de lo contrario, es false.

Comentarios

El LoadPostData método comprueba si el valor de postback del HtmlInputRadioButton control es diferente de su valor anterior y, si es así, devuelve true.

El LoadPostData método se usa principalmente por los desarrolladores de controles que amplían la funcionalidad del HtmlInputRadioButton control.

Se aplica a