When I use $Response->Include('filename'), does this script execute as a perl block or something? I notice that local variables are not visible inside the included file:
 
e.g.
 
sub callit {
    my $var="test";
    $Response->Include('file.inc');
}
 
in file.inc:
 
testvar=<%=$var%>
 
The local variable is not available in the included file (so the file is not *really* inlined). Do I need to use the @args to get stuff into the included file? How is that used?
 
Sorry to be such a pain in the butt
 
Tim

Reply via email to