Navigation from Contact Form

Is there a way to not allow users to go
back after they have entered data into a contact form and
hit submit? On my site, once users input data into the "contact us"
form and and hits send, they are sent to a "thank you" page. Is
there a way to not allow the user to go from the "thank you" page
back to the "contact us" page where all their data is
waiting to be subitted again?
Thanks - Matt

The only way I can think of is to clear the browser history,
but that's
rather a nasty thing to do.
Why do you not want them to go back?
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
==================
"mtrueblood" <[email protected]> wrote in
message
news:gk0h61$ag2$[email protected]..
> Is there a way to not allow users to go
back after they have
> entered
> data into a contact form and hit submit? On my site,
once users input data
> into
> the "contact us" form and and hits send, they are sent
to a "thank you"
> page.
> Is there a way to not allow the user to go from the
"thank you" page
>
back to the "contact us" page where all their data is
waiting to be
> subitted again?
>
> Thanks - Matt
>

Similar Messages

  • How to Disable the Process Header, collapsible Area, and Process Warning Bar from Contacts Form of CRM 2013

    Folks,
    How to Disable the Process Header, collapsible Area, and Process Warning Bar from Contacts Form of CRM 2013
    Thank you.

    Hi,
    You can deactivate the business process itself if you do not want at all. So that the header will not available for the entity.
    Regards,
    Priya

  • Change 'new form submission' text when receiving email from contact form.

    Hi,
    One of our clients has asked us to change the text they receive when they get an email from their contact form.
    It currently says: 'new form submission'
    they want it to say: 'West of the Moon ~ Ayr ~ Website Enquiry'
    We have tried changing the name of the form but this only changes the subject in the email not the wording on the email. Is there any way to do this?

    Hi Richard,
    Please check the php script to which the web form submits to and then open that with a text editor and edit the verbiage that you want to there.
    PS - You will need to make these changes after every export from Muse as Muse will override them on every export/upload.
    - Abhishek Maurya

  • Why don't messages deliver from Contact form

    I have just concluded moving a WordPress website from the /blog (www. kenapexvision. com/blog) sub directory back to the root directory (www. kenapexvision. com) of the site. Before now, I had built the contact form using Dreamweaver (spry validation). I adjusted the positioning of the fields for better page display from WordPress dashboard and cleaned up the "hints" and "spry validation" messages since they won't work on WordPress and then I set it up using formmail.php script. I also used a "thank you" page in the (formmail.php) script which I had hidden using "PC Hide page" plugin.
    Everything worked perfectly fine while the site was in the /blog sub folder until I moved all the content of the /blog folder to the root direct. Now every other thing is working perfectly fine - the pages and all other links, including display of the "thank you" page - after comment submission. However the message doesn't deliver to the email addresses set up in the formmail.php script.
    Please what could be the reason for this? I could use a contact form plugin as suggested by someone, but I want to use this method (formmail script) until I fully understand how the contact form plugins work.
    Please I need an urgent assistance on what could be the reason why messages aren't delivering from the contact form and how I could correct it.
    Thank you

    Yes, here is the link.
    http://www.kenapexvision.com/?page_id=376

  • E-mail from contact form not forwarding to e-mail host provider

    I just made updates to and existing Muse file and now the email from the contact form isn't going through to my email provider.
    Anyone else having this issue in Muse 2014?
    Thanks.
    Craig

    Hi,
    I've no idea how you can suppress such an message in MS Outlook. I'm a little bit surprised though, you have chosen an OLE2 approach. Why don't you simply send e-mail messages from the database using utl_smtp or utl_mail ?
    Hope this helps,
    Matthieu

  • Emails from contact form not working

    I have a contact form on one of my website and it is not working properly. 
    Muse gives me a warning of not using another email than connected to the domain of the web.
    As I use Gmail in this particular website it is not working.
    How to solve this?
    Thanks
    Pétur

    Hi,
    I have and they told me they use SMTP authentication for their incoming emails.
    They also tried to work on Muse PHP code for me - but did not manage to configure it correctly for emails through SMTP from forms in Adobe Muse.
    The problem is that I have a customer that is not receiving any inquiries from his customers because the form on his website is not working.
    Do I have to use Businesscatalyst - is it alright there to use Gmail to send emails from forms hosted there?
    Hope you have some solution - I have to solve this
    Reg.
    Pétur

  • "Un"configure Business Catalyst from contact form???

    Help! I hope there is a way to have a contact form in Muse without it configured to Business Catalyst? Let me know your thoughts.
    Thanks in advance!

    Only custom web forms in BC have an ajax / json response request, that will not work with the login form and some others in BC.
    You will need to do your own ajax request but then you will not issues about the cross domain etc. You need to look at how the BC login works, your refresh and how to address that. (Its more complicated then you think)

  • Send data from contact form

    I have dreamweaver mx2004. simple solution, i am sure, just
    don't understand the help terminology.
    I have a contact me form on website. i want the information
    typed, including a drop down menu choice to be emailed to me when
    the submit button is clicked by customer. help

    Search this forum for form mail. Use advanced search as the
    basic search has been broken.

  • Making a Contact Forms Anti-Spam Work

    I can't get this anti-spam .php code to work, Important Note: The coding worked before I added the anti-spam label/.php coding. Any obvious faults in the coding?
    HTML:
    <link rel="stylesheet" href="css/site-feedback-part-two.php" type="text/css" media="screen" />
        <form method="post" action="site-feedback-part-two.php">
       <label>Name</label>
        <input name="name" placeholder="Type Here">
        <label>Email *</label>
        <input name="email" type="email" placeholder="Type Here">
        <label>Suggested Feedback *</label>
        <textarea name="message" placeholder="Type Here"></textarea>
        <label>What is (20+5)/5? (Anti-spam) *</label>
      <input name="human" placeholder="Type Here">
        <div><input id="submit" name="submit" type="submit" value="Submit"></div>
            </form>
    PHP:
    <?php
        $name = $_POST['name'];
        $email = $_POST['email'];
        $message = $_POST['message'];
        $from = 'From: Contact Form';
        $to = '[email protected]';
        $subject = 'Site Feedback';
        $body = "From: $name\n E-Mail: $email\n Message:\n $message";
    if ($_POST['submit']) {
    if (&& $human == '5') {
        if (mail ($to, $subject, $body, $from)) {
            echo '<p>Your message has been sent!</p>';
        } else {
            echo '<p>Something went wrong, go back and try again!</p>';
      } else {
      ($_POST['submit'] && $human != '5') {
        echo '<p>You answered the anti-spam question incorrectly! This means that your message has not been sent</p>';
    ?>
    Thanks for the help.

    <?php
    $name = $_POST['name'];
    $email = $_POST['email'];
    $message = $_POST['message'];
    $from = 'From: Contact Form';
    $to = '[email protected]';
    $subject = 'Site Feedback';
    $body = "From: $name\n E-Mail: $email\n Message:\n $message";
    if(isset($_POST['submit'])) {
    if($_POST['human'] != 5) {
    echo '<p>You answered the anti-spam question incorrectly! This means that your message has not been sent</p>';
    elseif ($_POST['human'] == 5) {
    mail($to, $subject, $body, $from);
    echo '<p>Your message has been sent!</p>';
    else {
    echo '<p>Something went wrong, go back and try again!</p>';
    ?>

  • Contact forms stop working

    Im using adobe muse since almost its beginning, since a short time the contact forms are not working. i have change all the settings, what its happening? im not using the creative cloud server?

    ok, thank you, im trying to send mails from contact form, after write everithing says forms received. All looks fine but i dont get any mail to my account. I already check my e mails configuration and all was fine. This happends with almost 4 web pages that i have made in muse.

  • How can I remove my company's iCloud Contacts account from a former employee's iPhone and have the current information removed as well?

    How can I remove my company’s iCloud Contacts account from a former employee's iPhone and have the current information removed from their iPhone at the same time as well? Will just changing the iCloud password be enough? Our company shares an iCloud account for convenience but when someone leaves we don't want the information to stay on their iPhone.

    Changing the password would only block them from accessing the iCloud information.  They would still have access to the local copy on thier phone.  To delete the local information, you would need to go to Settings>iCloud on the phone, tap Delete Account, then choose Delete from My iPhone.  (This only deletes the iCloud account and data from the phone, not from iCloud.)  This, obviously, must be done during the exit process as it requires access to the phone.

  • Contact Form: How do i create a link from an XML file to another domain to read a PHP File

    So i purchased a template from Template Monster and im having a little trouble with the contact form. The server that im uploading it to is a privite server that the company owns. It supports ASP and not PHP. I cant seem to get the ASP form to work so all i want to do it create a link to another one of there servers that supports PHP and have the contact form link to there and read the PHP file (that i will upload to that server) and send the email from there.
    This is the XML that i have to fill in in order to make it work
    Everything in Red is what i needed to fill out in order for the form to work.
    <?xml version="1.0" encoding="utf-8"?>
    <!--
            Please read this information to learn how to set up the contact form integrated
            into the template.
            This readme file explains in details the meaning of the settings that can be
            done in the fcContactFormConfiguration.xml configuration file.
            It is recommended for you to use an XML editor to make changes to this file
             because it’s less possible to make an error in the markup which can cause to
            a not working contact form.
      -->
    <contactFormConfiguration>
        <!--
                An e-mail address which will be used to receive messages from your contact form.
                You can specify several e-mail addresses separating them with a comma.
                For example: [email protected], [email protected], [email protected]
          -->
        <emailTo>[email protected]</emailTo>
        <!--
                A server script type which will process sending e-mails. It depends on your
                hosting and in the current version of the contact form it is allowed to use
                two types:  php (Apache, PHP Hosting); asp (IIS web server, ASP).
          -->
        <serverProcessorType>php</serverProcessorType>
        <!--
                A name of the script file which process sending e-mails on your server (without
                extension). The name contact is used by default.
          -->
        <serverProcessorFileName>contact</serverProcessorFileName>
        <!--
                Set whether to validate only required fields (true/false).  The default value is
                true which means the not required fields of your contact form will not be validated.
                For example if the e-mail field of your form is set as not required (imagine it)
                the form will be processed even if the user types in an incorrect e-mail address.
          -->
        <validateRequiredOnly>false</validateRequiredOnly>
        <!--
                Set whether to submit the form when the Enter key is pressed even if the focus is
                not on the Submit button (true/false).
          -->
        <submitFormOnEnter>false</submitFormOnEnter>
        <!--
                Text showing to the user when the form is submitted without any errors.
          -->
        <messageSentText>Thank you for your message.</messageSentText>
        <!--
                Text showing in case the form is not submitted because of a server error.
          -->
        <messageSentFailedText>Sorry, your message couldn't be sent</messageSentFailedText>
        <!--
                Text your visitor will see while waiting till the processing is over.
          -->
        <formProcessingText>processing...</formProcessingText>
        <!--
                Your SMTP server (for ASP only).
          -->
        <smtpServer>localhost</smtpServer>
        <!--
                Your SMTP port (for ASP only).
          -->
        <smtpPort>25</smtpPort>
        <!--
                Set whether to send the message as a plain text (true) or as HTML (false).
          -->
        <plainText>false</plainText>
        <!--
                ID of the input field (in the structure XML file) to use for the “from: ”
                or email to use instead (for example: [email protected]).
          -->
        <emailFromSource>2</emailFromSource>
        <!--
                Subject of the e-mails that will be sent through this contact form or ID of
                the input field (in the structure XML file) to use for the “subject: ” label
                in your e-mail client.
          -->
        <subjectSource>Contact Form from your site</subjectSource>
        <!--
                Validation error messages that are showing to the user when the form fails to
                validate. The form supports different types of validators. You can change the
                text of the error messages the validators produce here.
                You can use the {LABEL} keyword in these messages. It will replace it with the
                label value of the field where an error occurs.
          -->
        <validationErrorMessages>
            <!--
                    A required field is not filled in.
              -->
            <message type="fieldIsRequired">{LABEL} is required.</message>
            <!--   
                    The specified e-mail address is incorrect.
              -->
            <message type="emailNotValid">{LABEL} - is not valid email address.</message>
            <!--
                    The specified number of characters in a field is less than a required minimum.
              -->
            <message type="minCharsLimitError">{LABEL} - The specified number of characters in a field is less than a required minimum.</message>
            <!--
                    The specified string does not match with the regular expression.
              -->
            <message type="reqExpError">{LABEL} - The specified string does not match with the regular expression.</message>
            <!--
                    The specified number is greater than an acceptable biggest number for this field.
              -->
            <message type="biggerThanMaxError">{LABEL} - The specified number is greater than an acceptable biggest number for this field.</message>
            <!--
                    The specified number is lower than an acceptable lowest number for this field.
              -->
            <message type="lowerThanMinError">{LABEL} - The specified number is lower than an acceptable lowest number for this field.</message>
            <!--
                    The data is not a number.
              -->
            <message type="notANumberError">{LABEL} - The data is not a number.</message>
            <!--
                    The specified number must not be negative.
              -->
            <message type="negativeError">{LABEL} - The specified number must not be negative.</message>
            <!--
                    The minimum number of variants is not selected
              -->
            <message type="minRequirementError">{LABEL} - The minimum number of variants is not selected</message>
            <!--
                    The number of variants selected exceeds the maximum
              -->
            <message type="maxRequirementError">{LABEL} - The number of variants selected exceeds the maximum</message>
            <!--
                    The fields that should be equal do not match
              -->
            <message type="shouldBeEqualError">{LABEL} - values do not match</message>
            <!--
                     The date has wrong format.
              -->
            <message type="dateIsNotValidError">{LABEL} - date has wrong format</message>
        </validationErrorMessages>
    </contactFormConfiguration>
    THIS IS THE ACTUAL CONTACT.PHP Form That i would like to link to.
    <?php
    //-----------------Getting data sent by flash---------------------
    foreach ($_POST as $key => $value){
            if ($key != 'mail_to' && $key != 'smtp_server' && $key != 'smtp_port' && $key != 'mail_from' && $key != 'mail_subject' && $key != 'plain_text'){
                $mail_body .= '<b>'.str_replace('_',' ',$key).'</b>:<br/>';
                $mail_body .= ''.stripslashes($value).'<br/>';
    $message = '<html><body>'.$mail_body.'</body></html>'; //  mail body
    //------------if plain text is set to true removing html tags------
    if ($_POST['plain_text']=='true') {
        $message = str_replace('<br/>',"\r\n", $message);
        $message = strip_tags($message);
    } else {
    //----otherwise composing message headers---------------------------
        $headers  = 'MIME-Version: 1.0' . "\r\n";
        $headers .= 'Content-type: text/html; charset=windows-1251' . "\r\n";
    //------------setting conf data-------------------------------------
    $to = $_POST['mail_to'];
    $from = $_POST['mail_from'];
    $subject = $_POST['mail_subject'];
    $smtp_server = $_POST['smtp_server'];
    $smtp_port = $_POST['smtp_port'];
    //---------setting header info--------------------------------------
    $headers .= 'From:' .$from;
    if (mail($to, $subject, $message, $headers)){ // sending mail
        print('&mail=1');  //succes
    } else {
        print('&mail=0');//failure
    ?>

    You can open both Muse files at once, copy the content of a page on one site, then paste it into a new page on the other site. You might have to redo some of the page styling.

  • Emails generated by the Contact Form widgets are saying they are coming from me rather than the person who has generated the email?

    Can I change the emails generated by the Contact Forms from saying that they are coming from me, to the address of the person that's actually generated the enquiry on the contact form? Or does this always automatically link back to my Creative Cloud account because thats how I'm hosting the websites?

    Because they ARE coming from you (at least from your account)... this is the account the website is using to send the form to your email and this means that a user visiting your website can send you this email "EVEN" when they don't own an email account themselves.
    No you can't legialy change the address to theirs... thats a big no no in most countrys but you can and should have a "contacts" field on your form that allows people to give you a email or phone number so that you can follow up.
    p.s. many people make the mistake of trying to force email contacts in their forms and that offen turns people off using them if they MUST tell you the colour of their underware just to contact you about a sales offer or simple question then don't expect to get much feed-back from your forms.

  • Every time one of my email addresses doesn't work on my mail app, due to wrong password or whatever, it deletes all of the contacts form my phone.  What can I do to stop this from happening?

    Every time one of my email addresses doesn't work on my mail app, due to wrong password or whatever, it deletes all of the contacts form my phone.  What can I do to stop this from happening?
    I have tried deleting the account and it deletes all my contacts.  I have verizon and even using back up assistant, it says the contacts are there but they aren't.  The only way i can find a contact is if I start to type a name in and new text but once i sent the new text, the name disappears and it just shows the number.  Siri nor the address book don't recognize any contacts at all.

    I cant find any reciept in my email or in my husbands email.  I am going to attempt to call and speak to someone who can help me because this was not my fault except trying to be normal and update my phone!

  • How can I direct all my contact form replies (from my website), to my personal email address?

    How can I direct all my contact form replies (from my website), to my personal email address?
    I have embedded the code to my website but would like all of my contact form replies to be directed to my email address. How can I do this by revising the embedded code. Also will I still be able to receive replies after recieving 5000? At this point will I need a premium account?

    Email notifications are a feature of the Basic and Plus account.
    The free account only allows for 50 responses. The Plus (Premium) account allows for 5000.
    Randy

Maybe you are looking for