summaryrefslogtreecommitdiff
path: root/demos/quickstart/protected/pages/ActiveControls/Samples/TActiveTextBox/Home.php
blob: c5961ef779f905047626481331c0e302dc5a4790 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?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);
	}
}