public function get_content()
 {
     $content = new HTMLTags_TagContent();
     $content->append_str($this->question);
     $content->append_tag(new HTMLTags_BR());
     $action_a = new HTMLTags_A($this->yes_str);
     $action_a->set_href($this->action);
     $content->append_tag($action_a);
     $content->append_str(' ');
     $cancel_a = new HTMLTags_A($this->no_str);
     $cancel_a->set_href($this->cancel);
     $content->append_tag($cancel_a);
     return $content;
 }