blob: 3628ad0a127b0c7aee297d0861c8ce766339580f (
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");
}
}
?>
|