NGWS SDK Documentation  

This is preliminary documentation and subject to change.
To comment on this topic, please send us email at ngwssdk@microsoft.com. Thanks!

HtmlTextArea.OnServerChange

Raised on the server when the HtmlTextArea control value changes between postback requests.

[Visual Basic]
Overridable Protected Sub OnServerChange( _
   ByVal e As EventArgs _
)
[C#]
protected virtual void OnServerChange(
   EventArgs e
);
[C++]
protected: virtual void OnServerChange(
   EventArgs* e
);
[JScript]
protected function OnServerChange(
   e : EventArgs
);

Parameters

e
Event arguments.

Remarks

This event is raised only when a user initiates a round-trip back from the browser (for example, when a submit button is clicked). On its own, this event does not cause a round-trip to occur.

See Also

HtmlTextArea Class | HtmlTextArea Members | System.Web.UI.HtmlControls Namespace