summaryrefslogtreecommitdiff
path: root/tests/FunctionalTests/active-controls/protected/pages/Sessioned/PageStateTest.php
blob: 9d4a769503e5b73b1fbdc6cb838a9294f12a2c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

class PageStateTest extends TPage
{
	function button1_oncallback($sender, $param)
	{
		//sleep(rand(0,5));
		$sender->CustomData = $sender->CustomData + 1;
		$this->label1->Text = " button1 clicked ".$sender->CustomData." times";
	}
}

?>