blob: 1993b78d5fd9b2d77b814d1162ad776af478e8ac (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
 | <?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);
	}
}
?>
 |