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

Removes an event handler for the OnServerChange event. If there is more than one instance of this handler, all of them will be removed.

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

Parameters

value
[To be supplied.]

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