RE: hta

2009-02-03 Thread Deans, Glenn (IT Solutions US)
Do you mean you want Perl to create the HTA text file or replace the VBScript with Perl? Since the HTA is just a text file it can create one on if you want, but it cannot be used within the HTA itself. The browser cannot interpret Perl. Kind regards Glenn

RE: Date math with UTC Coded Time

2009-02-03 Thread Deans, Glenn (IT Solutions US)
Can anyone give me some direction for handling the UTC Coded time? I think I'm just missing something obvious, but I just can't get this into a useable format for doing any kind of date math. Kind regards Glenn Deans Architect Siemens IT Solutions and

Re: Date math with UTC Coded Time

2009-02-03 Thread Lyle
DateTime.pm Deans, Glenn (IT Solutions US) wrote: Can anyone give me some direction for handling the UTC Coded time? I think I'm just missing something obvious, but I just can't get this into a useable format for doing any kind of date math. Kind regards

RE: hta

2009-02-03 Thread Jan Dubois
On Tue, 03 Feb 2009, Octavian Rasnita wrote: Well, the browser can interpret PerlScript if perl is installed. Does it work only in common html files and Web Scripting Host but not in .hta files? Can perlscript be used to create .hta applications like the example below which uses VBScript?

Perl for ISAPI and CRLF

2009-02-03 Thread Jenda Krynicky
I have ActivePerl v5.8.8 build 822 and Windblows Vista Home Premium with its builtin IIS (but I see the same behaviour under MS Windows Server 2003) and was using the following to print the CGI headers: print HTTP/1.0 200 OK\n if($ENV{'PerlXS'} eq 'PerlIS'); print Content-type:

Re: hta

2009-02-03 Thread Octavian Rasnita
Well, the browser can interpret PerlScript if perl is installed. Does it work only in common html files and Web Scripting Host but not in .hta files? Thanks. Octavian - Original Message - From: Deans, Glenn (IT Solutions US) glenn.de...@siemens.com To:

Re: Date math with UTC Coded Time

2009-02-03 Thread Bill Luebkert
Deans, Glenn (IT Solutions US) wrote: Can anyone give me some direction for handling the UTC Coded time? I think I'm just missing something obvious, but I just can't get this into a useable format for doing any kind of date math. I know nothing of ADO, but given an epoch time or a UTC time,

Re: Perl for ISAPI and CRLF

2009-02-03 Thread Bill Luebkert
Jenda Krynicky wrote: How's it going man - long time no talk. I have ActivePerl v5.8.8 build 822 and Windblows Vista Home Premium with its builtin IIS (but I see the same behaviour under MS Windows Server 2003) and was using the following to print the CGI headers: print HTTP/1.0

RE: Perl for ISAPI and CRLF

2009-02-03 Thread Jan Dubois
On Tue, 03 Feb 2009, Jenda Krynicky wrote: I have ActivePerl v5.8.8 build 822 and Windblows Vista Home Premium with its builtin IIS (but I see the same behaviour under MS Windows Server 2003) and was using the following to print the CGI headers: print HTTP/1.0 200 OK\n

Re: hta

2009-02-03 Thread Octavian Rasnita
From: Aaron Hawryluk aaron.hawry...@gmail.com IF it's workable, you will need to make sure that the script syntax is converted to Perl. Structures like If Not x Then y, while workable in VBScript, are either syntactically ambiguous or just plain don't work in Perl. In other words, just