<?phpclass Checkbox01 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Simple CheckBox"; $this->render = new WSPObject(); $chk1 = new CheckBox($this); $chk1->setText("My CheckBox")->setChecked(); $this->render->add($chk1); }}?>