I am dealing with an old app in asp classic vbscript. I’d like to store the input of a form in a database text field as the form fields are a subject to frequent change and I don’t feel like normalizing the old database.
Any solutions for serialization in vbscript?
Thank you!
Try and use the Form collection.
Request.Form
http://www.w3schools.com/ASP/showasp.asp?filename=demo_simpleform1
ProTip – parse data into xml format. Then you have many more options for using the data.