Further to my issues of <CFCONTENT>
I have a test document in place now and can fetch it using <cfcontent> ok
I am encrypting the link like this ...
<a href="fetch_doc.cfm?document= #encrypt("#session.cfid##session.cftoken#-#reportid#","#application.key#")#" target="_blank"">#get_years.date_year#</a>
Which gives this in the URL
http://perform.bgfl.org/fetch_doc.cfm?document=%202)NC;#(^/CB+[7,PHW-KR78*@
However when I try to decode with this ....
<cfoutput> Coded = #url.document#<p> <cfset decoded=decrypt(#url.document#,#application.key#)> Decoded = #decoded# </cfoutput>
I get this ....
Coded = 2)NC;
Decoded =
Is this something to do with the hash (#) character in the URL ...? If so how do I get round it ...?
<a href="fetch_doc.cfm?document= #URLEncodedFormat(encrypt(session.cfid&session.cftoken&"-"&reportid,application.key))#" target="_blank"">#get_years.date_year#</a>
The URLEncodedFormat() should do the trick.
Stephen
-- These lists are syncronised with the CFDeveloper forum at http://forum.cfdeveloper.co.uk/ Archive: http://www.mail-archive.com/dev%40lists.cfdeveloper.co.uk/
CFDeveloper Sponsors and contributors:-
*Hosting and support provided by CFMXhosting.co.uk* :: *ActivePDF provided by
activepdf.com*
*Forums provided by fusetalk.com* :: *ProWorkFlow provided by proworkflow.com*
*Tutorials provided by helmguru.com* :: *Lists hosted by gradwell.com*To unsubscribe, e-mail: [EMAIL PROTECTED]
