Change event that is fired if the value of the control is changed. Only fired when AutoPostBack=true.
<ww:wwWebTextBox runat="server" id="txtName"
AutoPostBack="true"
Change="OnTxtNameChange" />
To handle the event just implement the method on the page object:
DEFINE CLASS Absolute_Page as WWC_WEBPAGE
FUNCTION OnLoad()
ENDFUNC
FUNCTION OnTxtNameChange()
this.lblNameEcho.Text = this.txtName.Text + ". " + TIME()
ENDFUNC
ENDDEFINE
o.wwWebTextBox.Change
See also:
Class wwWebTextBox© West Wind Technologies, 1996-2024 • Updated: 12/14/06
Comment or report problem with topic