Question : Coldfusion Variable Evaluation

I am struggling to get CF to evaluate a variable within a string that I have returned from the db.

The string that is returned from the following query (qResponse.response) is :

"Your email setup is currently not setup.<br><br>Please go to <a href="test.cfm?personuid=#url.personuid#">My Account</a> to setup your email account."

cfoutput displays the text just fine, but the hyperlink takes me to:

test.cfm?personuid=#url.personuid#

....instead of actually evaluating the current value of url.personuid.

Assistance would be greatly appreciated.

1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
13:
<cfquery name="qResponse" datasource="#application.datasource#">
	select response from appresponse
</cfquery>

<html>
<head></head>
<body>

<cfoutput>#qResponse.response#</cfoutput>

</body>
</html>

Answer : Coldfusion Variable Evaluation

Have you tried readyboost?  It is a way of wpeeding up RAM cache by writing to a USB device rather than a disk drive.  The premise behind this being that reads and writes are faster than writing to a spinning disk.

In terms of performance, its good especially moving in between applications and loading programs.  I always recomend this for people running 32 bit 7 on older computers.

check out this blog post
http://www.groovypost.com/howto/microsoft/vista/increase-windows-vista-performance-using-readyboost/
Random Solutions  
 
programming4us programming4us