blob: cbe818db8b47966ec802456333fd5ae17e51a3de (
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->label1->Text="You clicked the button, didn't you?";
	}
	public function buttonClicked2($sender,$param)
	{
		$this->label2->Text=THttpUtility::htmlEncode($this->txt2->Text);
	}
}
  |