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.AddOnServerChange

Adds an event handler for the OnServerChange event.

[Visual Basic]
Overridable Public Sub AddOnServerChange( _
   ByVal value As EventHandler _
)
[C#]
public virtual void AddOnServerChange(
   EventHandler value
);
[C++]
public: virtual void AddOnServerChange(
   EventHandler* value
);
[JScript]
public function AddOnServerChange(
   value : EventHandler
);

Parameters

value
Event handler to add.

Remarks

The OnServerChange event is raised on the server when the text area value changes between post-back requests. This server event does not proactively cause a round-trip to occur from the client. Instead, it is only thrown when a user initiated round-trip back to the page (for example: a submit button is clicked) occurs.

See Also

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