Re: capture heredoc

2001-03-26 Thread Ron Grabowski
> $Msg = < check the text in the body $Response->write( "not so simple dear friend" ) ; to demonstrate the situation RIGHTHERE ___ Perl-Win32-Web mailing list [EMAIL PROTECTED] http://listserv.ActiveState.com/mailman/listinfo/perl-win32-web

capture heredoc

2001-03-26 Thread Jim Doyle
How do I capture html that contains usage of $Response->write within a heredoc and subsequently print it or store it in a file? The following script <%@ LANGUAGE = PerlScript %> <% $Msg = < check the text in the body $Response->write( "not so simple dear friend" ) ; to demonstrate the situation