How to create client side "Save as CSV file" button?

2002-09-25 Thread chris
I am able to retrieve data and display it in a browser. How do I create a button that will allow the data to be saved as a CSV file on the client side? -- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]

Re: Barcode scanner & CGI

2002-09-25 Thread Geraint Jones
On Tuesday 24 September 2002 3:41 pm, fliptop wrote: > On Tue, 24 Sep 2002 at 13:24, Geraint Jones opined: > > GJ:I'm trying to get the output from a barcode scanner into my CGI script. > What I GJ:would like to see is the barcode going straight into a text box > in my GJ:browser. I am using Devic

Re: Barcode scanner & CGI

2002-09-25 Thread fliptop
On Wed, 25 Sep 2002 at 10:00, Geraint Jones opined: GJ:On Tuesday 24 September 2002 3:41 pm, fliptop wrote: GJ:> On Tue, 24 Sep 2002 at 13:24, Geraint Jones opined: GJ:> GJ:> GJ:I'm trying to get the output from a barcode scanner into my CGI script. GJ:> What I GJ:would like to see is the barcode

Re: How to create client side "Save as CSV file" button?

2002-09-25 Thread MMKHAJAH
Simple. Procedure: 1- Write out the file on the server. 2- Redirect the user to the file . ( using: print ("Location: http://..URL..TO..FILE";) ) 3- Remove the file from the server. - Original Message - From: "chris" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, September

Re: Barcode scanner & CGI

2002-09-25 Thread Geraint Jones
On Wednesday 25 September 2002 10:46 am, fliptop wrote: > On Wed, 25 Sep 2002 at 10:00, Geraint Jones opined: > > GJ:On Tuesday 24 September 2002 3:41 pm, fliptop wrote: > GJ:> On Tue, 24 Sep 2002 at 13:24, Geraint Jones opined: > GJ:> > GJ:> GJ:I'm trying to get the output from a barcode scanner

Re: How to create client side "Save as CSV file" button?

2002-09-25 Thread dirk van der Giesen
Yeah and i think you should set the content type header as well in return, don't know the exact mime type but this should be easily found somewhere for a csv if you for example want to present it in excel. --- MMKHAJAH <[EMAIL PROTECTED]> wrote: > Simple. > Procedure: > 1- Write out the file on t

Re: uninitialised value in pattern match

2002-09-25 Thread Francesco Scaglioni
From: Janek Schleicher <[EMAIL PROTECTED]> Subject: Re: uninitialised value in pattern match Date: Tue, 24 Sep 2002 13:10:28 +0200 > ^^^ > There misses a ' quote. > (Don't retype code, put & paste instead). > > >causes: > >"Use of inititialized va

Re: uninitialised value in pattern match

2002-09-25 Thread Janek Schleicher
Francesco Scaglioni wrote at Wed, 25 Sep 2002 15:45:22 +0200: > Typo in the copy not the original -- I think I misstated my question > -- the error message in the log only occurs when there is no mollusc > parameter ( sometimes there is sometimes there isn't ). How can I > check for the existanc

Re: Barcode scanner & CGI

2002-09-25 Thread Wiggins d'Anconia
Just as a warning some systems at boot check the ownership/permissions of devices in /dev and correct the "problem children" so all of a sudden after a reboot this may not work again, you might be pre-emptive, try rebooting (or take a walk through the init process) and if this is the case addi