User = $Request->item("Login")->item(); $Site = $Request->item("Site")->item(); $topic= $Request->item("Topic")->item(); my $Referer = $Request->ServerVariables("HTTP_REFERER")->item(); my $string=$Request->ServerVariables("QUERY_STRING")->item(); use CGI; use OLE; $query= new CGI; %ttopics = ( home => 'C1.html', listingmgr => 'C2.html', cma => 'C3.html', ) if (!defined($topic)) { # ...handle error... next; } $nightmare = $ttopics{$topic}; @_=$nightmare; print "@_ is "; if (!defined($target)) { # ...handle error... next; } $Response->Write("Topic is $topic\n"); $Response->Write("my target is $nightmare\n"); if ($Session->{'isAuthenticated'} = 1) { $Response->Redirect($Session->{'this'}); #this is the index file of help website. }