if ($Request->item("Tab")->item() eq "Help") { my $content = ''; if ( $Request->ServerVariables("SERVER_NAME")->item() =~ /mlxhelp/ ) { my $toc_file = ( $Session->{'usrType'} eq 'Pro' ) ? 'e:\SupportWeb\Nerfherder\Content\HELP\PRO\TOC.html' : 'e:\SupportWeb\Nerfherder\Content\HELP\STD\TOC.html'; my $user_type = uc $Session->{'usrType'}; $Response->write("Hello the table of content file is $toc_file"); open TOC, $toc_file; my @toc_lines = ; close TOC; foreach my $line ( @toc_lines ) { $content .= qq^ ^ if ( $line =~ /

(.*?)<\/a>/ ); } $content .= ''; }