Subversion-Projekte lars-tiefland.prado

Revision

Details | Letzte Änderung | Log anzeigen | RSS feed

Revision Autor Zeilennr. Zeile
1 lars 1
<?php
2
 
3
class Home extends TPage
4
{
5
	public function onLoad($param)
6
	{
7
		parent::onLoad($param);
8
		$this->Output->dataBind();
9
	}
10
 
11
	public function textChanged($sender,$param)
12
	{
13
		$sender->Text="text changed";
14
	}
15
 
16
	public function submitText($sender,$param)
17
	{
18
		$this->TextBox1->Text="You just entered '".$this->TextBox1->Text."'.";
19
	}
20
}
21
 
22
?>