Use of submit button

Hello,
could somebody help?
I'm trying to put a text button plus a submit button in order
for the website viewer to enter some text and click on the submit
button to transfer the content to an emailaddress.
The problem: how to make the submit button work?
Thanks for your help,
Jean-Claude

There are only two ways to process form data -
1. Use mailto:[email protected] as the action of the form
2. Use a server-side scripting method to a) harvest the
form's data, b)
process it in some manner, e.g., enter it into a database, c)
formulate and
send an email to one or more email recipients, and d)
redirect the visitor
to some ending page
Method 1 is quite simple, and is also the least reliable. It
depends both
on your visitor having an email client already installed on
their computer -
this eliminates public computers, or home users without email
clients
installed (more and more it seems) - and on the installed
email client
responding to
the mailto call. It is not possible to use this method *and*
send the
visitor to a
thank you page as well.
Method 2a is the preferred method, since it eliminates the
problems of
method
1, but it means that you have to grapple with
server-scripting somehow (ASP,
CF, PHP, perl, etc.).
Method 2b would be to use some third-party form processing,
like
http://www.bebosoft.com/products/formstogo/.
You would have to decide which of these methods is best for
your needs,
but if it's Method 2a, then start by asking your host what
they provide for
form
processing. If it's 2b, then read their FAQ/instructions
carefully.
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go
- DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs,
Tutorials & Resources
==================
"behrjc" <[email protected]> wrote in
message
news:g8evj1$r64$[email protected]..
> Hello,
> could somebody help?
> I'm trying to put a text button plus a submit button in
order for the
> website
> viewer to enter some text and click on the submit button
to transfer the
> content to an emailaddress.
> The problem: how to make the submit button work?
> Thanks for your help,
> Jean-Claude
>

Similar Messages

  • Dynamically changing the file name using the submit button

    I am currently using a submit button to send information to myself from the user of the form. Is there any way to change the name of the file that is emailed as a .pdf file according to some type of parameter or data set that is collected in the form?

    Not programmatically. The attachment wil take the same name as the opened PDF. If you change the name of the PDF then it will change your form name as well. That cannot be done programmatically.

  • Which form would work best with a Filemaker database? PDF or HTML? and can we use a submit button to do this?

    We are looking at developing work forms for a project that will use a submit button to send the data from the form to a Filemaker database. My question is can this be done with a PDF or do we need to convert it to a HTML form?

    The architecture is not submit form - database, not exactly. It's submit form - web app - database. The crucial thing is the web app, perhaps one of CGI/PHP/ASP/others... FileMaker Pro seems a slightly unusual choice for a web back end, but there is a FileMaker Pro Server product. (Regular FileMaker is out of the question).
    So, you can have a web app which takes HTML format submits and updates a database. What about PDF?
    * PDF can submit the same format as HTML, so the same backend can work
    * PDF can submit other formats, FDF or XFDF. The web script could handle these.
    Frankly, if HTML is an option I'd go with HTML. There are many important compatibility issues with PDF forms, since so many browsers now do not use Adobe technology, and have their own. In these alternatives, form support goes from nonexistent to flaky, via badly broken.

  • Is it possible to make 9.0 Pro work correctly using the "submit button?"

    At one time, I was able to use the submit button after I enabled the Reader option. Today, however, using Acrobat 9.0 Pro, I am unable to get the submit button to work using the PDF option. I keep getting the message "Acrobat unable to connect to your email program." The syntax I'm using is mailto:[email protected] Any clues out there? Thanks for your replies.

    This is an e-mail configuration issue on the client machine in most cases, not a PDF issue. In the past, you had to be set for MAPI mail service. This has changed with newer systems and versions of Acrobat, but it still seems to give folks problems. In any case, be sure you have a default e-mail package defined for Windows and check the configuration.

  • REP-50134 occurs when using the submit button on the Reports Parameter Form

    Good Morning,
    I get the "REP-50134: Cache subitem reports does not exist" error after clicking on the Submit Button from a Reports parameter form.
    I am using Forms/Reprots 9i.
    Using the source code given in the Whitepaper 'Oracle Forms Services - Using Run_Report_Object() to call Reports with a parameter form', all works well when paramform=no, but when I have a Form print a report with paramform=yes, the parameter form appears correctly, but generates the error after clicking the Submit Button.
    Any inputs as to causation or possible places to look to solving this problem would be greatly appreciated.
    Thank you

    Hello and thanks.
    The value in the tag is <form method=post action="reports?">
    Looking at this I suspect my problem is related to this setting. I am trying to follow all the instructions in the White Papers but they are a little confusing as they are not all exactly the same. Each attempts to explain a specific functionality without regards to the whole.
    For instance I believe I need to have the variables P_ACTION, P_USER_CONNECT and P_SERVER_NAME in the report being called and then add a Before Parameter Form trigger to reset the values. But this seems to duplicate and override what has already been sent via the REPORT_OTHERS property. It is a tad bit confusing.
    Can you confirm?
    Thanks for any clarification you can provide.

  • How to use multiple submit buttons in jsp form

    hello dextors,
    Im using a jsp page which have got some 'n' no submit buttons according to the Iterator ..each iterator display a row contains few fields plus submit button ..ex., If ' n' rows means 'n' respective submit buttons..the problem here is when i click any of the submit button only the value of the first row goes
    to the other jsp page..no matter wat ever button I click only first row goes..
    remember the page displays all the rows correctly and though the values of submit button are also different it gives the same result...
    what could be the reason please help it out...
    my jsp page contains
    <%@ page language="java" import="java.util.*" %>
    <%@ page language="java" import="java.io.*" %>
    <form name="frmChangeCorrection" method="post" target="childwindow" action="popup.jsp" >
    <body>
    <%
    RFTrackerDAOFactory factory = new RFTrackerDAOFactory();
         DailyDataDAO dailyDAO = factory.getDailyDataDAO();
         String month = request.getParameter("month");
         String year = request.getParameter("year");
         String empNo = request.getParameter("empno");          
         Collection coll = dailyDAO.getMonthyEmployeeData(empNo,month,year);
    Iterator iter = coll.iterator();     
    %>
    <div align="center">
    <center>
    <table border="1" width="75%" bgcolor="#B6C7E5">
    <tr>
    <th width="11%">EMPNO</th>
    <th width="30%">EMPLOYEE NAME</th>
    <th width="11%">DATE</th>
    <th width="11%">IN TIME</th>
    <th width="11%" >OUT TIME </th>
    <th width="15%" >TOTAL HRS</th>
    <th width="11%" >MODIFY</th>
    </tr>
    </table>
    </center>
    </div>
    <%
    int count=0;
    while(iter.hasNext())
         EmployeeData data = (EmployeeData)iter.next();
         String str=data.getDuration();
         String str1= str.substring( 0, 5 );
    count++;
    %>
    <div align="center">
    <center>
    <table border="1" width="75%" bgcolor="#B6C7E5">
    <tr>
    <td width="11%"> <%= data.getEmpNo() %> </td>
    <input type="hidden" name="empno" value="<%=data.getEmpNo() %>">
    <td width="30%"> <%= data.getEmpName() %> </td>
    <input type="hidden" name="empname" value="<%= data.getEmpName() %>">
    <td width="11%"><%= data.getDate() %> </td>
    <input type="hidden" name="date" value="<%= data.getDate() %>">
    <td width="11%"><%= data.getInTime() %> </td>
    <td width="11%" > <%= data.getOutTime() %> </td>
    <td width="15%" > <%= str1 %> </td>
    <td width="11%" > <input type="submit" name="Change" value="<% =count%>" onclick="popupResult()" >
    <input type="hidden" name="Change" value="<%=count%>" >
    </td>
    </tr>
    </table>
    </center>
    </div>
    <%
    %>
    </form>          
    </p>
    </table>
    </body>
    <script>
    function popupResult(){
    window.open('about:blank','childwindow', 'height=300,width=300');
    </script>

    It is assumed that one submit button will function for a form..if you want more that one submit form try to build as many forms as u need and put the submit inside that
    that will cure your problem
    and y do you want to create so many submit buttons.. instead you can make use of select button

  • Using the Submit button to Email

    I was previously using Frontpage and I have just recently
    started using DW so a lot of this is still new to me. I did get the
    DW8 for dummies book which is helping a lot, although I know being
    a member on a forum like this will help much more. So any help is
    very much appreciated.
    I am new to this site and did a quick search but I wasn't
    able to find what I was looking for.
    I am basically planning on creating an order form using basic
    radio buttons and name, address, contact info, etc... fields.
    I wanted to have a button on the batton (like the submit
    button) that a customer could click on after filling out the
    specific fields and then the whole page/order form (with its
    contents) would be emailed to me.
    Could the "Submit" be used to do this? I know in the DW 8 for
    Dummies book it mentions that the Submit button is for credit card
    processing companies to send the info and then come back with the
    results, but I just want it to email the completed page/order form
    so the credit card can be processed in the office.

    > Why isn't it as simple as entering in a
    "mailto:[email protected]" type of
    > thing? Or is it?
    It is that simple. However, it is very unreliable. For it to
    work, the
    visitor filling out the form has to have a properly
    configured email client,
    that works with the webpage form. That leaves out people
    using webmail
    services and those using public computers. And- most
    computers will put up
    a warning screen that the form data is being sent by an
    insecure method and
    give the person a choice to send or cancel.
    >
    > Everything I seem to read talks about downloading a
    specific cgi-bin type of
    > thing depending on what my hosts' server has.
    Setting up a form processing script can be very simple.
    First step- check your hosting's support/FAQ section for info
    about forms
    and scripts.
    if your hosting has a control panel or CPanel, look there for
    a
    pre-installed script and instructions on using it.
    The free kaosmailer extension at
    http://kaosweaver.com will create
    the
    scripting for you, within dreamweaver, for your choice of
    asp/php/coldfusion. (pick the one your hosting supports)
    A php script is phpformmail at
    http://boaddrink.com
    An asp script is at
    http://www.brainjar.com/asp/formmail/
    A cgi/Perl script would be at
    http://nms-cgi.sourceforge.net
    (but it would
    be my last choice, a php script would be far easier to set
    up)
    Any further specifics totally depend on what scripting method
    you can use on
    this hosting, and on what script you want to use.

  • Using a submit button, how can I include a data key and a message in the body of the email??

    I have a form that I have created in LiveCycle with a submit button to have the completed form emailed to a specific person. I have it set up with a message in the body of the email, but I am looking to add an additional message based on the results of one of the fields in the form....is this possible without major script writing?
    I am not a programmer, but willing to learn some script.

    softwater wrote:
    ...and costs $14.99
    Yep! And if you absolutely need (or think you need) that functionality, it is worth every penny.
    As Don already pointed out, exactly what the recipient sees will depend on how they've set up their machine and what unnecessary 3rd party apps they might've installed to display attachments the way they want.
    In theory, that is true. In practice, Attachment Tamer will cause more of your messages to show up as plain-jane icons on the other end. The problem is, after all, people running Outlook 2003 and 2007. These people likely aren't doing many system modifications.
    If I were you, I'd use the free solutions provided above, save my money and let my recipients decide how they will handle their mail.
    I completely agree.

  • How to automatically saved a pdf form into a network folder using a submit button

    Good evening to everyone,
    I'm more than a beginner on adobe development reason why I would like to apologize first if my questions are dumbs. :-(
    I would like to know if 'Adobe 9 Professional Extended' has the possibility to put some code into a submit button in order for the pdf form to be saved with a unique name and into a Network folder located into an Encryption Server where we handle our PII. Is it? Over the past two weeks I've been digging into the documentation but I'm unable to find something that will help me to accomplish our headquarters requirements.
    If there is no possibility, is there any programming language that adobe accepts in order to configure a piece of code that will store the file into a network folder? Perhaps VB or C-SHARP?
    Whatever feedback anyone can give, I deeply appreciate it.
    Thanks,

    Thanks for the reply Mr. Chaney!
    I do have more questions based on your recomendation.
    From my understanding, JavaScript or FormCalc will be my only options, right? If that's the case, how can a scripting language (client server side) allow me to transfer automatic saved files into a Network folder within my company intranet? I downloaded the Scripting Basic manual and all the scenarios and code are client server side such as, changing background color, add effects to a button and so on.
    I did find a command under FormCalc called "PUT" can I use this command to transfer a pdf file into a Virtual Directory folder? All the examples I saw were for XML files.
    Greetings,

  • How to use many submit buttons in an one html form

    I'm doing a simple program to insert, edit, delete data from a web page to an database
    but the problem is that in an html form , you are allowed to put only 1 submit button.
    I heard that you can take the action of many buttons, for a one form using java script
    if anyone have a better idea or else have this simple java script, please help me
    Thank you very much

    Give the buttons an unique name.
    In the servlet just check if the button is pressed or not by determining if HttpServletRequest#getParameter() doesn't return null for the button name.There are a couple of "gotchas" when using this technique of dispatching with certain html controls. Most of them browser related.
    If you are using <input type="image" name="myButton"> as a submit button, be aware that Internet Explorer will submit the parameters "myButton.x" and "myButton.y" giving the x,y co-ordinates of where you clicked on the button. And won't submit any other value. So calling request.getParameter("myButton") would return null. You have to test for request.getParameter("myButton.x");
    If you are using <input type="button" name="myButton"> with Internet Explorer all of the buttons are deemed "successful". So calling request.getParameter("myButton") will never return null.
    At least thats the way it works in IE6. And thats what I'm stuck with at work right now, so thats what gets used. It may be fixed in later versions, but I don't have any info on that.
    Cheers,
    evnafets

  • How to use the submit button without an email address

    We are changing the way one of our forms is used.  Previously the "submit by email" button opened up an email with a specific TO: address.  Now we like to have the user put in the address but still have the form attached to the email when it is opened. 
    Has anyone done this or does anyone have an idea how we can accomplish this?

    Place a HTTP submit button in your form and update the User Entered email using the below script.
    YourHTTPSubmitButton.event__click.submit.target = "mailto:" + txtEmailField.rawValue

  • Can I use a submit button that will automatically flatten and open up the save as screen?

    Hello,
    I'm working with forms in Adobe Acrobat Pro 9 and I want the submit button to flatten the document then open the save as screen.  I know I can print to pdf and this automatically will open that screen, but these forms are going to be used with tablets that may or may not have the "print to adobe" as an option.  Is there another way to flatten?  I know the PDF Optimizer will do that too, but it isn't an executable option in the button properties.  Magic anyone?  Thanks.

    It depends very much on the platform and the applications used by the users of this form. If they are using non-Adobe software, all bets are off.
    Also, some tablets (iPad) don't support JS, so even if they do use Adobe's Reader for the iOS, there's not much that can be done in the way of scripting.
    Generally speaking: In Acrobat you can flatten the form, but in Reader that's not possible. What you can do, though, is create a function that makes the form fields read-only, thus preventing the user from editing them after having submitted the file.

  • How to restrict users who can use a submit button.

    I have a submit button which I would like to limit the names of the users who can use it. Is there any way I can limit who can use it.
    Thanks

    Hi
    Use SUIM and find the users have this authorization.
    Here the first tab user--list of users with critical authorization select that and u can find the users list.
    Regards
    Bhaskar
    Edited by: bhaskar1818 on Jul 22, 2008 2:32 PM

  • Do I have to use the submit button?

    My client want to just print the online form and not have to submit it.

    Hi
    I am guessing you want to distribute the form as a PDF and not include the Submit button.  See this post where I describe how to save the PDF without a submit button: http://forums.adobe.com/message/5928042#5928042
    Thanks,
    Josh

  • I'm having trouble using a "submit" button to post to an aweber opt-in form

    Hi,
    So after some help using samples from "resdesign" (thanks M) I have designed a nice opt-in form that runs through some animations at the bottom to make it look nice. It only has 2 input values. "Name" and "email". It can be viewed here.
    http://briancschneider.com/Coaching/EmailForm.html
    What I'm not sure about is where to add the code I have from aweber and how to submit the information clicking on the "sign up" button.
    This is the relevant code from aweber. Slightly changed for privacy reasons.
    <form method="post" class="af-form-wrapper" action="http://www.aweber.com/scripts/addlead.pl">
    <div style="display: none;">
    <input type="hidden" name="meta_web_form_id" value="17025***94"
    ><input type="hidden" name="meta_split_id" value="">
    <input type="hidden" name="listname" value="coaching*****"><input type="hidden" name="redirect" value="http://www.aweber.com/thankyou-coi.htm?m=text" id="redirect_fb072b6c92ab8bf7*****213613c1d0a5">
    <input type="hidden" name="meta_adtracking" value="course_notication_"
    ><input type="hidden" name="meta_message" value="1">
    <input type="hidden" name="meta_required" value="name,email">
    <input type="hidden" name="meta_tooltip" value=""></div>
    Thanks for your help!
    Brian

    Anyone have any advice on this?

Maybe you are looking for