Is there a maximum amount of text that a session variable can hold. I am trying to store the value of a textfield so I can use it later to send in an email.
Is there any alternatives to session variables which would be able to store more?
You could store the text in a database. Both Oracle and MS SQL Server have the ability to store a large amount of data in a single field. You could tie the database record to the session id. Be sure to delete the record with the session_onend in the global.asa file.
If you don’t have access to a database, you could store the information in a text file and tie the name of the text file to the session id. You would also want to delete the file with session_onend.
maybe you should consider using a cookie...
I am not a real expert of the thing but you can find great tutorials all over the web.
try this one to start:
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.