[KCFusion] Session variable memory

2003-03-18 Thread Ryan Hartwich
I forgot to mention, you can delete both individual session variables (struct delete function?) and the whole session variable list for an individual (structclear?). You could attempt to delete all of them if they use a logout button, and some of them if they are no longer needed in the app.

Re: [KCFusion] Session variable memory

2003-03-18 Thread Adaryl Wakefield
K I took the quotes out still not good. cfset session.test = foo cfoutput#session.test#/cfoutput cfscriptStructClear(session.test);/cfscript gives me Cannot convert given value to a struct. Please check the validity of the expression Most of the book and Studio examples create structures before

Re: [KCFusion] Session variable memory

2003-03-18 Thread Adaryl Wakefield
Didn't work before but it did this time ..thanks! A. - Original Message - From: Benjamin Price [EMAIL PROTECTED] To: [EMAIL PROTECTED] Sent: Tuesday, March 18, 2003 3:49 PM Subject: RE: [KCFusion] Session variable memory Since the variable test is a string, try StructDelete(session,test