Ask a Question related to Coldfusion - Advanced Techniques, Design and Development.
-
cmartz #1
PDF form results
I am creating a PDF in which a user to our site can fill out online and then
somehow I would like them to submit that pdf with the filled out sections to an
email address. Is there any way to do this in Coldfusion? These forms are
applications for jobs to be placed on my site. I supose they could also be
submitted to a database but I believe a email containing either the FDF or
filled out PDF would be the best solution.
cmartz Guest
-
Displaying Form Results
Hello everyone, I was wondering if you all could help me with this problem I have. I would like to create a simple form, with 3 text fields and a... -
CFloop through Form results
I'm trying to set a value of 1 or 0 if any Radio on a form submission (loop) is labeled 'OutofService'. The form is looped by Radio_ID. The... -
Form Results Page
Okay, I used Publisher to create my form and have it emailed to me, and it works great. What I want to know is... how do I get the form results... -
Form Results Order
Created two web forms with the results being emailed to me and this actually works well, but the results in the email aren't in the order they are... -
Help with form results in query
How can I get this line to work? I am trying to get the results entered in a form to be part of my query. I am able to get the form results but I... -
CFHackJob #2
Re: PDF form results
I am also trying to do the same thing. Tried accessing the variables as FORM.fieldname and it does not work. I really have no clue and the documentation is not overly helpful.
Has ANYONE done this?
CFHackJob Guest
-
Kronin555 #3
Re: PDF form results
[url]http://www.adobe.com/support/techdocs/325874.html[/url]
Kronin555 Guest
-
cmartz #4
Re: PDF form results
That is for cgi. Is there any way to do this with ColdFusion?
cmartz Guest
-
PaulH #5
Re: PDF form results
as far as capturing the form, something like this doesn't work? if you want FDF
i think you can but you'll have to dip down into the underlying iText lib.
<cfparam name="form.who" type="string" default="Paul">
<cfparam name="form.where" type="string" default="Bangkok">
<cfdocument format="PDF">
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html>
<head>
<title>test</title>
</head>
<body>
<cfoutput>
<cfform action="formPDF.cfm" format="HTML">
<b>who are you</b>? <input type="text" name="who" value="#who#"><br>
<b>where are you</b>? <input type="text" name="where" value="#where#"><br>
</cfform>
</cfoutput>
</body>
</html>
</cfdocument>
PaulH Guest
-
-
-
Cannikinn #8
Re: PDF form results
You have set the actions for your "Submit" button in the PDF to format "HTML".
Then you just tell it what URL you want it to go to (in your case a .cfm page)
and then all the variables will come that CF page as FORM.whatever.
What I want is to be able to actually save that raw PDF that gets sent over.
That'd be the best.
Cannikinn Guest



Reply With Quote

