Thanks for replying, let me explain the reason for this first:
I have a form (1 form of 8) with approx 60 textfields, I need to save the
values which are returned from various recordsets and calculations using VB
when the page is executed. The user after completing all the forms the user
sets another value on another page (which could be completed a week etc)
which is inserted into a database, so my thought was to save all the values
from the form in a memo textfield in the database instead of creating a field
for each textfield, then after the user has set the other value split the
memo textfield and conduct the extra calculations required based on the
additional set value and resave the all to the database again.
This way I can keep the database small without creating all the fields in
the database for each form - I don't need to report/search on the values in
the memo textfield.
Your solution is perfect so thanks for this, could I ask one question:
e.g.
my memo textfield is like the following using your solution:
productID1==LB5284/3 productID2==6491B710G/Y productID3==KCL10-10
when I retrieve the value from a recordset I would like to using VB to:
productID1 = LB5284/3
productID2 = 6491B710G/Y
productID3 = KCL10-10
I'm trying to follow your split function by using Response.Write:
<%
item = Split(session ("memo"),vbCrLf)
what = Split(item,"==")
Response.Write(what)
%>
Regards,
Sanj