
August 18th, 2007, 12:25 AM
| | | Way to save form data locally w/o server?
Is there a way to create a form in a local html file where the
contents of the form are written to a local file when a 'save' button
is selected?
It would be nice if it was as easy as changing "somesite.com" to
"file:///C:/whatever" and "post" to "save"... in the following form:
<form action = "somesite.com" method="post">
<p<textarea name="Text" rows="20" cols="80"</textarea>
<input value="Send" type="submit"><input type="reset"</p>
</form>
I would like to do this without using javascript, and without having
to set up a local server to serve the form.
Any help appreciated. | 
August 18th, 2007, 12:45 AM
| | | Re: Way to save form data locally w/o server? greg_e@mail.com wrote: Quote:
Is there a way to create a form in a local html file where the
contents of the form are written to a local file when a 'save' button
is selected?
>
It would be nice if it was as easy as changing "somesite.com" to
"file:///C:/whatever" and "post" to "save"... in the following form:
<form action = "somesite.com" method="post">
<p<textarea name="Text" rows="20" cols="80"</textarea>
<input value="Send" type="submit"><input type="reset"</p>
</form>
>
I would like to do this without using javascript, and without having
to set up a local server to serve the form.
>
Any help appreciated.
>
| It is not really that hard to set up a local server with CGI or LAMP, if
you feel you really *must* use a local html file.
On the other hand, Python comes with Tk and has hooks to other
easy to use GUI packages, which might make more sense to use locally.
Perl and Ruby have similar hooks. Is there anything really magic
about an html file for your uses? | 
August 18th, 2007, 12:55 AM
| | | Re: Way to save form data locally w/o server? greg_e@mail.com wrote: Quote:
Is there a way to create a form in a local html file where the
contents of the form are written to a local file when a 'save' button
is selected?
>
It would be nice if it was as easy as changing "somesite.com" to
"file:///C:/whatever" and "post" to "save"... in the following form:
<form action = "somesite.com" method="post">
<p<textarea name="Text" rows="20" cols="80"</textarea>
<input value="Send" type="submit"><input type="reset"</p>
</form>
>
I would like to do this without using javascript, and without having
to set up a local server to serve the form.
>
Any help appreciated.
>
| No. This is a job for local scripting. Use a batch file.
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO http://www.LittleWorksStudio.com | 
August 18th, 2007, 10:55 PM
| | | Re: Way to save form data locally w/o server?
On Aug 17, 7:44 pm, mbstevens <NOXwebmast...@xmbstevensx.comwrote: Quote:
gre...@mail.com wrote: Quote:
Is there a way to create a form in a local html file where the
contents of the form are written to a local file when a 'save' button
is selected?
| > Quote:
It would be nice if it was as easy as changing "somesite.com" to
"file:///C:/whatever" and "post" to "save"... in the following form:
<form action = "somesite.com" method="post">
<p<textarea name="Text" rows="20" cols="80"</textarea>
<input value="Send" type="submit"><input type="reset"</p>
</form>
| > Quote:
I would like to do this without using javascript, and without having
to set up a local server to serve the form.
| >>
It is not really that hard to set up a local server with CGI or LAMP, if
you feel you really *must* use a local html file.
>
On the other hand, Python comes with Tk and has hooks to other
easy to use GUI packages, which might make more sense to use locally.
Perl and Ruby have similar hooks. Is there anything really magic
about an html file for your uses?
| I basically just need a local page I can load in Firefox that will
make Firefox act like notepad, where you can save a text area to a
file, but I don't even need to be able to select the filename, like
you can do with notepad - the filename can be hardcoded.
If there is no way to do this without setting up a server and
installing Perl, etc. to process the script, what is the smallest &
simplest server, and what is the smallest and simplest script
processor? I don't need more functionality, and doubt I will ever use
it for anything else.
I learned and used 'c' several years ago, but I don't even have a 'c'
compiler now.
Thanks | 
August 19th, 2007, 01:15 AM
| | | Re: Way to save form data locally w/o server? greg_e@mail.com wrote: Quote:
On Aug 17, 7:44 pm, mbstevens <NOXwebmast...@xmbstevensx.comwrote: Quote:
>gre...@mail.com wrote: Quote:
>>Is there a way to create a form in a local html file where the
>>contents of the form are written to a local file when a 'save' button
>>is selected?
>>It would be nice if it was as easy as changing "somesite.com" to
>>"file:///C:/whatever" and "post" to "save"... in the following form:
>> <form action = "somesite.com" method="post">
>> <p<textarea name="Text" rows="20" cols="80"</textarea>
>> <input value="Send" type="submit"><input type="reset"</p>
>> </form>
>>I would like to do this without using javascript, and without having
>>to set up a local server to serve the form.
>>Any help appreciated.
| >It is not really that hard to set up a local server with CGI or LAMP, if
>you feel you really *must* use a local html file.
>>
>On the other hand, Python comes with Tk and has hooks to other
>easy to use GUI packages, which might make more sense to use locally.
>Perl and Ruby have similar hooks. Is there anything really magic
>about an html file for your uses?
| >
I basically just need a local page I can load in Firefox that will
make Firefox act like notepad, where you can save a text area to a
file, but I don't even need to be able to select the filename, like
you can do with notepad - the filename can be hardcoded.
>
| No you cannot. HTML forms post to server-side scripts, so you *need* the
server. If you don't want the server then your must use the OS, put a
shortcut to a text file and be done with it...
--
Take care,
Jonathan
-------------------
LITTLE WORKS STUDIO http://www.LittleWorksStudio.com | 
August 19th, 2007, 12:05 PM
| | | Re: Way to save form data locally w/o server? greg_e@mail.com wrote: Quote:
I basically just need a local page I can load in Firefox that will
make Firefox act like notepad, where you can save a text area to a
file, but I don't even need to be able to select the filename, like
you can do with notepad - the filename can be hardcoded.
| Is this because Notepad is missing from your computer and you need a
work-around?
Anyway, no: there is no "save" option for HTML forms. | 
August 19th, 2007, 12:45 PM
| | | Re: Way to save form data locally w/o server? greg_e@mail.com wrote: Quote:
I basically just need a local page I can load in Firefox that will
make Firefox act like notepad, where you can save a text area to a
file, but I don't even need to be able to select the filename, like
you can do with notepad - the filename can be hardcoded.
| In the Mozilla.org browsers you can use XUL together with JavaScript to
do what you want, a simple search at Google gave the following llink: http://www.captain.at/programming/xul/ Quote:
If there is no way to do this without setting up a server and
installing Perl, etc. to process the script, what is the smallest &
simplest server, and what is the smallest and simplest script
processor?
| If looking for the smallest simplest http server, then thttp, http://www.acme.com/software/thttpd/
For handling text, Perl may be the best language to use, otherwise php
is easy to learn and a lot more stable than visualbasic. Quote:
I learned and used 'c' several years ago, but I don't even have a 'c'
compiler now.
| Poor excuse, you get one for free at http://gcc.gnu.org
--
//Aho |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | | | | What is Bytes?
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over network members.
|