blob: 6850fb40763ae242a7e963f70e0f555e8aacdb15 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
<?php
// $Id: Home.php 1405 2006-09-10 01:03:56Z wei $
class Home extends TPage
{
public function buttonClicked($sender, $param)
{
$this->imageTest->ImageUrl=$this->publishAsset("hello_world.gif");
}
public function buttonClicked2($sender, $param)
{
$this->imageTest->ImageUrl=$this->publishAsset("hello_world2.gif");
}
}
?>
|