blob: 7d7dbaaca49b6c7ea612ee5cf38c9288ffa02f2e (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
<?php
Prado::using('System.Web.UI.ActiveControls.*');
class Ticket578 extends TPage
{
function button2_onclick($sender, $param)
{
$this->label1->Text = "Button 1 was clicked : " . htmlspecialchars($this->text1->Text);
}
}
?>
|