Ask a Question related to Dreamweaver AppDev, Design and Development.
-
Speegs #1
Survey On Submit Disable Form
I have created a survey, and I want to make it similiar to that found on
http:[url]http://www.nfl.com[/url]
So that when a user repsonds to the survey, it submits and then displays the
results, how would I get the form to not show the survey questions but now the
results, or are they two pages the same but with that changed?
~Speegs
Speegs Guest
-
Submit PDF Form
I've created my first PDF Form in Acrobat 7.0 Professional, with a "submit-form" button. Now, I want the filled-out form to be sent as an attachment... -
survey form
I want to build a survey form. What is the best way? I really want to build one that can run on a cell phone, blackberry. Im thinking flex to air.... -
disable enter button to submit form
I'm very new to ColdFusion - I'm building forms in Deamweaver, then using Cld fusion to pass he data to an Access Database. So far, so good. But... -
enable/disable submit button
:confused; can anyone help? i want to setup a form that allows users to upload files. i'm using ASPupload and this works great! however if a... -
Form Field/ Form Submit Problems (probably an easy answer...)
Hey Everyone.. I have a form that has approximately 7 text fields and 1 checkbox. Generally when this form is submitted(to itself BTW) it works... -
CarlGrint #2
Re: Survey On Submit Disable Form
Normally this is achieved with a Cookie, set when the user completes the form.
The first page of the form or the main page will check if the Cookie is set,
if it is set then it will tell the user they have compelted the form and direct
them to the results, else it will let then fill in the form.
Originally posted by: Speegs
I have created a survey, and I want to make it similiar to that found on
http:[url]http://www.nfl.com[/url]
So that when a user repsonds to the survey, it submits and then displays the
results, how would I get the form to not show the survey questions but now the
results, or are they two pages the same but with that changed?
~Speegs
CarlGrint Guest
-
Lawrence TMM #3
Re: Survey On Submit Disable Form
Hi Speegs,
This can be don by having the form submit to the same page it's on and set
your display based on if statements. Here's a real rough idea of what it
would look like in CF...
<cfif IsDefined ('FORM.Survey')>
Out Put the form fields submitted here...
<cfelse>
Display your form here..
<cfif>
Doing this will show the form if no form variables are present, if the form
has been submitted, thus the form variables are present, the form would be
hidden and the form fields submitted could be displayed.
This is a great way to economize your code and reduce your overall page
count.
"Speegs" <webforumsuser@macromedia.com> wrote in message
news:d4b6qu$ldg$1@forums.macromedia.com...>I have created a survey, and I want to make it similiar to that found on
> http:[url]http://www.nfl.com[/url]
>
> So that when a user repsonds to the survey, it submits and then displays
> the
> results, how would I get the form to not show the survey questions but now
> the
> results, or are they two pages the same but with that changed?
>
> ~Speegs
>
Lawrence TMM Guest



Reply With Quote

