Re: ASP in non-html files

2017-01-09 Thread Corey Epp
awesome, thanks From: Tsirkin Evgeny Sent: January 8, 2017 11:51 PM To: Corey Epp Cc: asp@perl.apache.org Subject: Re: ASP in non-html files For this you can use an asp-perl script which comes with Apache::ASP (09:50:47)@:~> more test.asp <% for($i=0

Re: ASP in non-html files

2017-01-08 Thread Tsirkin Evgeny
> void testFunc2(); > > void testFunc3(); > > void testFunc4(); > > > -------------- > *From:* Tsirkin Evgeny > *Sent:* January 7, 2017 10:38 AM > *To:* Corey Epp > *Cc:* asp@perl.apache.org > *Subject:* Re: ASP in non-html files > > Co

Re: ASP in non-html files

2017-01-08 Thread Corey Epp
testFunc<%=$i%>(); <% } %> would be converted to a file with void testFunc0(); void testFunc1(); void testFunc2(); void testFunc3(); void testFunc4(); From: Tsirkin Evgeny Sent: January 7, 2017 10:38 AM To: Corey Epp Cc: asp@perl.apache.org Su

Re: ASP in non-html files

2017-01-07 Thread Tsirkin Evgeny
Could you please explain what does that mean, "parse the perl" without apache server? On Fri, Jan 6, 2017 at 9:39 PM, Corey Epp wrote: > Hi, > > A project I'm working on requires me to deal with non-html files that have > in-line perl in the same format as ASP uses. I'm trying to find a simple >

ASP in non-html files

2017-01-06 Thread Corey Epp
Hi, A project I'm working on requires me to deal with non-html files that have in-line perl in the same format as ASP uses. I'm trying to find a simple way to parse the perl in the files like Apache::ASP does with html files without having to use an apache server. Apologies if this is the wro