Template file: Home.page
Class file: Home.php

/ActiveControls/Samples/TActiveTextBox/Home.php

<?php

class Home extends TPage
{
	public function buttonClicked($sender,$param)
	{
		$this->txt1->Text="You clicked the button, didn't you?";
	}

	public function textChanged($sender,$param)
	{
		$this->label2->Text=THttpUtility::htmlEncode($this->txt2->Text);
	}
}