package frames::inside; use strict; use warnings; sub render { my $class=shift; my $cgi=shift; my $aktion=$cgi->param('inside'); my $text='MIDDLE'; $text='Hier ist der Text!' if($aktion && $aktion eq 'text'); return $text; }