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