blob: 67e92766b05d7f45b5cc591f32668c787ce9b230 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<?php
class LargePageStateTest extends TPage
{
function onLoad($param)
{
parent::onLoad($param);
for($i=0;$i<100;$i++) //may try 10000, but may crash PHP.
{
$label = new TLabel();
$label->Text=" this is a very long label with some text $i:";
$this->Panel1->Controls[] = $label;
}
}
function button_clicked($sender, $param)
{
$this->status->Text .= ' Callback Clicked... ';
}
}
|