Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

CF 8 Developer edition and <cfpdf> tag.

Guest
Jun 29, 2010 Jun 29, 2010

Hi All,

I have an interactive pdf (in where I can type something and save it if I want).

I am using the following CF code to read that pdf and display its contents using the <cfdump> tag. But nothing is being displayed upon running this code. I just wonder whether the CF8 Developer edition might not have any support for <cfpdf> tag?. Please correct me if I am wrong.

<cfpdfform source="C:\ColdFusion8\wwwroot\david\Sample_PDF.pdf" result="resStruct" action="read">
    <cfdump var="#resStruct#" label="PDF Contents">
</cfpdfform>


Any idea?.

431
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines

correct answers 1 Correct answer

Enthusiast , Jun 29, 2010 Jun 29, 2010

Try moving the CFDUMP outside of the CFPDFFORM tags.

<cfpdfform source="C:\ColdFusion8\wwwroot\david\Sample_PDF.pdf" result="resStruct" action="read" />
<cfdump var="#resStruct#" label="PDF Contents" />

Message was edited by: JR "Bob" Dobbs Added code sample.

Translate
Enthusiast ,
Jun 29, 2010 Jun 29, 2010

Try moving the CFDUMP outside of the CFPDFFORM tags.

<cfpdfform source="C:\ColdFusion8\wwwroot\david\Sample_PDF.pdf" result="resStruct" action="read" />
<cfdump var="#resStruct#" label="PDF Contents" />

Message was edited by: JR "Bob" Dobbs Added code sample.

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Guest
Jun 30, 2010 Jun 30, 2010
LATEST

Thanks JR!!.. Good Catch!!...

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
Resources