RE: Large Web Site Question

2001-05-29 Thread Gregory_Griffiths
You could try using a .JS javascript file, and in that store a path and then get the app to read that, you should be able to use it for other things as well. Check out http://www.methodiststudent.org.uk for examples of how the .js file could be used. > -Original Message- > From: [EMAIL

RE: Database Connectivity.

2001-05-22 Thread Gregory_Griffiths
Check out the DBI and Win32::ODBC modules which have some very good references and sample as well as being subjects that many of us have worked on. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 21 May 2001 14:13 > To: [EMAIL PROTECTED] > Subject: Data

FW: to BLINK THE TEXT USING FORMAT STATEMENT

2001-03-15 Thread Gregory_Griffiths
As this is the web discussion list why not just use the tag ? I'm not completely sure of its coverage re browser compatibility. > > -Original Message- > > From: [EMAIL PROTECTED] > > [mailto:[EMAIL PROTECTED]] > > Sent: 05 March 2001 06:41 > > To: [EMAIL PROTECTED]; > > [EMAIL PROTE

FW: DBI

2001-02-16 Thread Gregory_Griffiths
alter table add (atr3 varchar2(30)) works in Oracle > > -Original Message- > > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > > Sent: 16 February 2001 15:54 > > To: [EMAIL PROTECTED] > > Cc: [EMAIL PROTECTED] > > Subject: FW: DBI > > > > > > quick and fast: > > > > hi all, >

FW: Automatically Submit HTML/ASP Forms

2001-02-14 Thread Gregory_Griffiths
> -Original Message- > From: Griffiths, Gregory D. /here > Sent: 14 February 2001 09:04 > To: '[EMAIL PROTECTED]' > Subject: RE: Automatically Submit HTML/ASP Forms > > > You just need to find what the action is and then recreate > that action on your page with the login details. >

RE: [Perl-win32-web] Sort question

2001-01-10 Thread Gregory_Griffiths
I think that you may have the syntax wrong for the module name, try from a command prompt : ppm search ODBC > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 10 January 2001 17:11 > To: griffiths, gregory d. /here; [EMAIL PROTECTED] > Subject: RE: RE: [P

FW: ppm install error

2001-01-09 Thread Gregory_Griffiths
> -Original Message- > From: Griffiths, Gregory D. /here > Sent: 09 January 2001 09:24 > To: '[EMAIL PROTECTED]' > Subject: RE: ppm install error > > > What command are you using that is causing the error ? most > ppm commands look something like > > PPM> install DBI > > > -Or

RE: Perl Send Mail

2000-12-19 Thread Gregory_Griffiths
You will need to install all of the modules listed in your USE statements onto your new webservers installation of PERL. Then retry this. > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED]] > Sent: 30 November 2000 05:53 > To: [EMAIL PROTECTED] > Subject: FW: Per

RE: Perl Embed Javascript call

2000-12-19 Thread Gregory_Griffiths
You can't approach it this way, simply because Javascript runs only on the client and you'd need to make a connection to the server or pass all your table names across or use Java for this. You may also get away with using a Form and Frames. The standard way is to submit the form to some serve

RE: Cookies, HTTP::Cookies and Perl

2000-11-21 Thread Gregory_Griffiths
Roland, I use CGI.pm or Javascript to do mine for me. > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 21 November 2000 16:59 > To: [EMAIL PROTECTED] > Subject: FW: Cookies, HTTP::Cookies and Perl > > > Does anyone know where I might be able to f

RE: File Download

2000-11-15 Thread Gregory_Griffiths
just stick out a standard HMTL Click here > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED]] > Sent: 15 November 2000 17:34 > To: [EMAIL PROTECTED] > Subject: FW: File Download > > > Anyone have an example of a Perl script that outputs HTML > that allows a > u

Include files

2000-10-24 Thread Gregory_Griffiths
Following my question about CGI and SHTML files and the replies I have the following 2 scenarios that I'd appreciate input on : 1. A static footer file (footer.html) that needs to be included with all CGI driven and HTML driven pages. Fro the CGI stuff I assume I can just open the file and rea

SHTML as a return from a CGI

2000-10-23 Thread Gregory_Griffiths
I've been quite happily using text/html as my return content type, but I'd now like to include my standard header / footer etc in the return, can I return a SHTML page or is it better to read the file into the script and then dump it out instead ? _

SSI's in CGI output

2000-10-19 Thread Gregory_Griffiths
I've got a standard footer that I normally add to all my pages using SSI, is there away to do the same thing when I send a response back from a CGI. The main difference as far as I can see is that a HTML file with SSI included is a SHTML file, how do I set this in the content type ? Is this pos