1) Put these values in a session that closes in (let's say, an hour).
2) Recall the session variable (I assume it would be something like.. 
#session.username# or something like that.

Can someone help me out? :)

Some pretty basic questions covered very well in the documentation.

<!--- This must be at the top of every page that will use these session 
variables.  Most CF developers would put it into an Application.cfm or 
Application.cfc file for this reason. --->
<cfapplication name="ASessionApp" sessionmanagement="yes" 
sessiontimeout="#createTimeSpan(0,1,0,0)#"><!--- The createTimeSpan() function 
takes values in the following order: days, hours, minutes, seconds. --->

<!--- Somewhere in your code you set a session variable. --->
<cfset session.varName = value>

<!--- Somewhere after setting it, you utilize the session variable. --->
<cfoutput>#session.varName#</cfoutput>


--------------
Ian Skinner
Web Programmer
BloodSource
www.BloodSource.org
Sacramento, CA

---------
| 1 |   |
---------  Binary Soduko
|   |   |
---------
 
"C code. C code run. Run code run. Please!"
- Cynthia Dunning

Confidentiality Notice:  This message including any
attachments is for the sole use of the intended
recipient(s) and may contain confidential and privileged
information. Any unauthorized review, use, disclosure or
distribution is prohibited. If you are not the
intended recipient, please contact the sender and
delete any copies of this message. 




~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
Message: http://www.houseoffusion.com/lists.cfm/link=i:4:241386
Archives: http://www.houseoffusion.com/cf_lists/threads.cfm/4
Subscription: http://www.houseoffusion.com/lists.cfm/link=s:4
Unsubscribe: 
http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=11502.10531.4
Donations & Support: http://www.houseoffusion.com/tiny.cfm/54

Reply via email to