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 );
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.
HtmlTextArea Class | HtmlTextArea Members | System.Web.UI.HtmlControls Namespace