Re: Create PDF from hyperlink

2008-12-11 Thread Mike Chabot
Make sure it is valid HTML, specifically looking for unclosed tags. The PDF creation engine doesn't work with a bunch of CSS. If you are able to reformat the code into more simple HTML then it might behave better. -Mike Chabot On Wed, Dec 10, 2008 at 11:27 PM, Steve Sequenzia [EMAIL PROTECTED]

Re: Create PDF from hyperlink

2008-12-10 Thread Steve Sequenzia
Gerald - Thanks for this info. I works but I am having another issue with it. For some reason any div tags that are floated left in the savecontent are not showing up when the pdf is created. All of the data in the div tag is just not there. Any idea or anyone else have any ideas. Any help

Re: Create PDF from hyperlink

2008-12-04 Thread Gerald Guido
Put this on the page you are working on. Put the content that you want in the pdf in the cfsavecontent block. cfoutput a href=#Script_Name#?action=gimmie/a /cfoutput cfsavecontent variable=MyContent Your content goes here /cfsavecontent cfoutput #MyContent# /cfoutput cfif URL.Action

Create PDF from hyperlink

2008-12-03 Thread Steve Sequenzia
I am looking for some help getting on creating a pdf from a hyperlink. I need to it to use content on the same page for the pdf. I do not want the entire page created as a pdf just a section of the page. Can someone please point me in the right direction for this. Thanks in advance.