RE: init in Apache::ASP

2000-09-08 Thread Jerrad Pierce
No. But you can create subroutines and call them... Or setup an include which defines various things to be subsitiuted... -Original Message- From: Issam W. Alameh [mailto:[EMAIL PROTECTED]] Sent: Friday, September 08, 2000 1:35 PM To: Modperl list Subject: init in Apache::ASP Hello

Re: init in Apache::ASP

2000-09-08 Thread G.W. Haywood
Hi there, On Fri, 8 Sep 2000, Issam W. Alameh wrote: I want to have something like Hello %=$name% % $name="something"; % Try to think of it as a program. You can't use the variable's value until you've set it. Why does it matter where

Re: init in Apache::ASP

2000-09-08 Thread Dmitry Beransky
At 03:59 PM 9/8/00, G.W. Haywood wrote: Try to think of it as a program. You can't use the variable's value until you've set it. Why does it matter where it goes in the page? Not exactly true for Perl, is it? -- the BEGIN subroutine comes to mind. What follows is just a speculation on my

Re: init in Apache::ASP

2000-09-08 Thread Joshua Chamas
"Issam W. Alameh" wrote: Hello All, Can I put my asp code at the end of my html page, but let it execute before showing the html??? I want to have something like Hello %=$name% % $name="something"; % Can this show Hello