Help for this page

Select Code to Download


  1. or download this
    my $sitelist_file="<c:\supportweb\content\sitelist.txt"
    print $sitelist_file;
    __END__
    <c:supportwebntentsitelist.txt
    
  2. or download this
    my $sitelist_file='<c:\supportweb\content\sitelist.txt';
    print $sitelist_file;
    __END__
    <c:\supportweb\content\sitelist.txt
    
  3. or download this
    open DATA, $sitelist_file or die "Cannot open '$sitelist_file': '$!'";
    
  4. or download this
    for my $line (@lines){
      $response->write($line);
    }