I am trying to allow people to edit their profiles that are stored in a database.
To do so, I have currently got my asp code grabbing the records from the database and storing them in form textfields and textareas. However I am finding that when I am setting the textfield value it is stripping the spaces from the record stored in the databse.
I have confirmed this by using a response.write to display the field does contain to words, seperated by a space.
I am sure that someone else has seen this happen before and would appreciate some help to solve my problem!
You need to wrap the data from the database in quotes, or better use server.htmlencode(databasedata) when you are putting the data in the html text field.