blob: c56b5229a61345292c309a62f1a36ea7fcb13b8e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
<?php
class Home extends TPage
{
public function button1Clicked($sender,$param)
{
$this->Result1->Text="You have entered: ".$this->HtmlArea1->Text;
}
public function button2Clicked($sender,$param)
{
$this->Result2->Text="You have entered: ".$this->HtmlArea2->Text;
}
public function button3Clicked($sender,$param)
{
$this->Result3->Text="You have entered: ".$this->HtmlArea3->Text;
}
}
?>
|