Ask a Question related to Coldfusion Flash Integration, Design and Development.
-
Eric Stewart #1
Problem getting to action page with CF Flash form
I am new to web development and ColdFusion. I have a form that works just
fine. I want to convert it to a flash form to get the flash look and
additional options. However, when I attempt this the flash form does not go
to the action page that I specify. Could someone look at the two sections of
code below and tell me if you see what I am doing wrong? If I have not
provided enough info to answer let me know and I will post more.
CODE FROM WORKING FORM
<cfoutput>
<cfform method="post"
action="../index.cfm?page=needabox/email_needabox&pageid=#pageid#">
..
..
<more code>
..
..
<tr>
<td colspan="3"><div align="center">
<input name="Submit" type="submit" value=" Send Information ">
</div></td>
</tr>
</table>
</cfform>
</cfoutput>
CODE FROM FLASH FORM THAT DOES NOT GO TO ACTION PAGE SPECIFIED
<cfoutput>
<cfform
action="../index.cfm?page=needabox/email_needabox_TEST&pageid=#pageid#"
format="flash"
height="1050"
width="500"
skin="haloBlue"
onSubmit="if(!Terms_and_Conditions.selected )
{ alert('You must agree to the Terms and Conditions to continue');
return false; }">
..
..
<more code>
..
..
<cfinput
name="Submit"
type="submit"
value=" Send Information " />
</p>
</cfform>
</cfoutput>
Eric Stewart Guest
-
How to access values of form fields on am action page?
I am sending few form fields to the action page. Here is what it receives (from CF debugging info): Form Fields: 58707001=TBD 587627_01=TBD... -
CF7 - changing action of a flash form
I understand you can't submit to other pages... well how about putting in a Cancel Button? I can get a submit and reset no problem but I can't seem... -
More Flash Form Action Script errors
The attach code fails and throws an action script error. However, should I remove one of the <cfinput> buttons, no errors are thrown. <cfform... -
form action page with insertion to DB
hi guys.. i am totally puzzled on what went wrong in this simple action. i am just doing a form page for user to key information into text field,... -
Form action problem
Trying to fix a web site I inherited. Problem is with the *help* page. User fills out form and hits send. The browser comes back with Error...



Reply With Quote

