blob: 997c0d8dca6116cf2ecd9d9abafe7c8e8ad8d8c6 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
<?php
class Ticket72 extends TPage
{
public function ButtonClick($sender,$param)
{
$a1 = $this->K1->SafeText;
$a2 = $this->K2->SafeText;
$this->ResultLabel->Text = $a2;
}
}
|