HtmlTextArea.LoadPostData(String, NameValueCollection) Método

Definición

Procesa los datos de postback para el control HtmlTextArea.

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

Boolean

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

Comentarios

El LoadPostData método comprueba si el valor de postback del HtmlTextArea 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 HtmlTextArea control.

Se aplica a

Consulte también