<?phpclass Textbox02 extends Page { public function InitializeComponent() { parent::$PAGE_TITLE = "Tutorial : Simple TextBox with default text"; $this->render = new TextBox($this); $this->render->setValue("default text"); }}?>