mario sanchez wrote:
> i would like to call http://www.whatever.com/xyz.html where
>AUTOMATICALLY xyz.html runs a perl script.
> i have asked this question in the past and the best answer afforded was to
> call xyz.cgi where the script first reads and "displays" xyz.html then
> goes off and does w
Add the onload command to the body tag of the HTML and spawn a new window
(javascript) with the target Perl script.
Example:
http://target.pl');">
Regards,
Ross
mario sanchez
mario sanchez wrote:
> i would like to call http://www.whatever.com/xyz.html where AUTOMATICALLY
> xyz.html runs a perl script.
>
> i have asked this question in the past and the best answer afforded was to
> call xyz.cgi where the script first reads and "displays" xyz.html then
> goes off and
Charles Greene wrote:
> Question,
> I am having a problem with some perl programs skipping records, it appears
> to be a record locking issue. In other words program A locking a record
> and
> program B skipping the locked record.
>
> I found the following code several layers deep in a cal
i would like to call http://www.whatever.com/xyz.html where AUTOMATICALLY
xyz.html runs a perl script.
i have asked this question in the past and the best answer afforded was to
call xyz.cgi where the script first reads and "displays" xyz.html then
goes off and does whatever else i needed. i ca
Question,
I am having a problem with some perl programs skipping records, it appears
to be a record locking issue. In other words program A locking a record
and
program B skipping the locked record.
I found the following code several layers deep in a call stack:
seek($file,$HDRSIZE+($bl
Title: RE: [Perl-unix-users] RTF to text
There are quite a few modules that match RTF+Text:
http://search.cpan.org/search?query=RTF+Text&mode=module
I'd think at least one or two will do what you want.
> -Original Message-
> From: Sandeep Deshpande [mailto:[EMAIL PROTECTED]]
> Sen
I read from file
$line= ;
chop($line);
and split :
($uid,$fname,$sname) = split(/\s+/,$line);
After call function of LDAP and receive ERROR.
If I get variable $uid as argument from command line :
Prompt>>: Program.pl uid
Then LDAP works OK !
Why ?
Dear All,
For some reason, I need to scan few documents, using perl. These documents
are in the RTF form. I am working on Ultra10 machine (Perl version
5.005_03). I need to convert these documents in Text (keeping it's bold and
italic modes intact), before I start scanning them through my script.