blob: e69ffdf20dab30a22bf27066cfc26f8c3296c709 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
class InPlaceWithValidator extends TPage
{
function button_valid($sender, $param){
$this->status->Text = "Status: ". $this->Firstname->Text.".".$this->Lastname->Text;
}
}
?>
|