473,657 Members | 2,538 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Saving HTML Form without Submit

I have a small project to create some simple HTML forms. Rather than
have our users go to our web page and 'SUBMIT' the form data, it would
be easier for them to fill out a simple standalone form, save it as an
HTML page and send the page as an attachment in an email for uploading
by the recipient. How feasible is this? and what HTML tags would make
it possible?

Dec 9 '05 #1
6 7849
ca************* @lmco.com wrote:
I have a small project to create some simple HTML forms. Rather than
have our users go to our web page and 'SUBMIT' the form data, it would
be easier for them to fill out a simple standalone form, save it as an
HTML page and send the page as an attachment in an email for uploading
by the recipient.

I'm mystified. It's harder to
- Open a browser
- Go to form
- Fill in form
- Submit it

than to
- Open a custom program
- Fill in the form
- Save it
- Open a mail client
- Attach the form (Damn! Where did I save it?)
- Address it (Damn! Where's that address?)
- Send it
?
Does the custom program need to work on multiple Operating Systems?
What about when you must update the custom program?
What about when you must change the form?
What about when you must change the mail address?

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Dec 9 '05 #2
ca************* @lmco.com wrote:
I have a small project to create some simple HTML forms. Rather than
have our users go to our web page and 'SUBMIT' the form data, it would
be easier for them to fill out a simple standalone form, save it as an
HTML page and send the page as an attachment in an email for uploading
by the recipient.


I think you meant it would be easier to implement on the back end with
that method, not easier for the user. Go learn a little bit about PHP,
Perl, or other server side processing language and do it properly. If
you go searching, you may even be able to find some pre-written scripts
to do what you need. You could also try asking in a server side
processing related newsgroup.

--
Lachlan Hunt
http://lachy.id.au/
http://GetFirefox.com/ Rediscover the Web
http://GetThunderbird.com/ Reclaim your Inbox
Dec 9 '05 #3
The people sending this form are frequently on travel where it is not
easy (i.e. fast) to sign on to any server. Sometimes it is NOT possible
at all. Saving a standalone form, sending the email w/ the form
attached and having someone at the office submit it to a DB REALLY is a
better way to go for us.

Dec 19 '05 #4
The people sending this form are frequently on travel where it is not
easy (i.e. fast) to sign on to any server. Sometimes it is NOT possible
at all. Saving a standalone form, sending the email w/ the form
attached and having someone at the office submit it to a DB REALLY is a
better way to go for us.
The form only needs to work with our operating system. And updating the
custom program or changing the form is not a problem because we have so
few changes.

Dec 19 '05 #5
JRS: In article <11************ ********@g47g20 00cwa.googlegro ups.com>,
dated Thu, 8 Dec 2005 16:23:06 local, seen in news:comp.infos ystems.www.
authoring.html, ca************* @lmco.com posted :
I have a small project to create some simple HTML forms. Rather than
have our users go to our web page and 'SUBMIT' the form data, it would
be easier for them to fill out a simple standalone form, save it as an
HTML page and send the page as an attachment in an email for uploading
by the recipient. How feasible is this? and what HTML tags would make
it possible?


To achieve what you seem to want, you could alternatively make the
SUBMIT button (perhaps not formally SUBMIT) collect and validate the
entries and write the lot to a textarea in compact but readable form; so
that the user can copy'n'paste the textarea into an E-mail.

The validation would be subvertible; but I assume that it is in the
interests of your users to co-operate with the system.

--
© John Stockton, Surrey, UK. ?@merlyn.demon. co.uk Turnpike v4.00 IE 4 ©
<URL:http://www.jibbering.c om/faq/> JL/RC: FAQ of news:comp.lang. javascript
<URL:http://www.merlyn.demo n.co.uk/js-index.htm> jscr maths, dates, sources.
<URL:http://www.merlyn.demo n.co.uk/> TP/BP/Delphi/jscr/&c, FAQ items, links.
Dec 20 '05 #6
ca************* @lmco.com wrote:
The people sending this form are frequently on travel where it is not
easy (i.e. fast) to sign on to any server. Sometimes it is NOT possible
at all. Saving a standalone form, sending the email w/ the form
attached and having someone at the office submit it to a DB REALLY is a
better way to go for us.

Make it a locally accessible HTML document rather than a custom program
that creates a HTML page. The back end then need only know how to attach a
file for mailing. Ordinary CGI stuff.

--
jmm (hyphen) list (at) sohnen-moe (dot) com
(Remove .AXSPAMGN for email)
Dec 21 '05 #7

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
2448
by: sumithradevi | last post by:
Hello Friends, I have two forms(form1 and form2) on my html page. question1 : can i access form 1 variables in form 2?. if so how? question 2: when form2 action is saveci.jsp . can i access form1 variables in saveci.jsp. if so how?. basically when form2 is submitted, form1 variables should be accessed in the jsp which processes form2.
4
4459
by: Victor Engmark | last post by:
Background: People want to be able to record large amounts of product data ("a few MB") on laptop or tablet PCs without _any_ kind of network connection, and then to submit the data to a database in the office come the end of the day. The installed base of the machines is controllable, but should include familiar concepts and structures, and it should be easy to deploy on many computers. The solution will be used for approximately two...
2
1758
by: Robert Diamond | last post by:
Hey guys (and girls ;)), I want to create some form data and submit it to the cgi script without having any (DOM) document loaded up. Is there a way in jscript to say... (probably something like...) var myFormObject = new document(actionHref, encryptType, etc..., nameOfFormField, valueOfFormField, etc...); myFormObject.submit();
4
9506
by: James Bond 007 | last post by:
I am a novice to Javascript (can do simple text-based pop-ups, but not familiar with variable manipulation). I would like to have a Javascript that gives me the start time (I don't care about the date) when the user entered my webpage and then the time that the user hit the "Submit" button on my HTML form.
7
2238
by: Brian | last post by:
I wrote this script here but I cannot get the script to save to the correct month.html. Can someone tell me what is wrong with this code? <html> <head> <title>Monthly Bills</title> </head> <body> <center><font size="4">Total Monthly Bills</font> <form action="billcalculation.php" method="POST">
2
3485
by: patrick73 | last post by:
I would like to submit a standard html form using the XMLHttpRequest object. As far as I can tell there is no easy way to do this. What I have to do is: 1 Register an event handler on the forms submit event 2 In this handler I have to: 2.1 Prevent the default action so that the form does not submit in the current window 2.2 text/x-www-form-urlencode all the form element name value pairs following the rules at:...
2
2217
by: jessDMiller | last post by:
I have no clue why the data from the form isn't saving into the database. What am I doing wrong? addAnnounce.php: <td align=top> <form action="index2.php" method="post">Heading:<br /><textarea name="heading" cols="50" rows="10"></textarea><br /><br />Announcement:<br /> <textarea name="announce" cols="50" rows="10"></textarea> <br /><br />Date:<br /><textarea name="date" cols="50" rows="10"></textarea><br /><br /><input...
7
1958
by: Dave Kelly | last post by:
There has to be a name for what I want to do and I don't know what words to google for. I have a form here: http://www.texasflyfishers.org/firstpage.htm I want to submit it to the server and have it saved: 1. In a directory by the guides name which would be the variable 'describe11'. Create this directory if it does not already exist. 2. Create a special file name from the date and time submitted.
4
8176
by: virk1711 | last post by:
I want to retain the state of checkboxes after the submit button has been clicked. What it is currently doing is that it is resetting the checkboxes after the submit button is clicked. My code is given below:- <?php session_start(); ?> <html> <head> </head> <body>
0
8413
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8324
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8842
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
8513
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
0
8617
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each protocol has its own unique characteristics and advantages, but as a user who is planning to build a smart home system, I am a bit confused by the choice of these technologies. I'm particularly interested in Zigbee because I've heard it does some...
1
6176
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4173
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
2
1970
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1733
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.