name = $name; $this->value = $value; } function toStringControl() { if (!$this->isRenderable()) return ""; if ($this->id=="") $this->id = $this->name; $html = "\n\tname\" id=\"$this->id\""; if (!$this->isEnable()) { $html .= " disabled=\"true\""; } $html .= " value=\"$this->value\""; if ($this->mOnClick) { $html .= " onclick=\"".$this->mOnClick."\""; } $html .= ">"; return $html; } }