Display data on form that contains a space
I am connecting to SQL server and display a persons name on a welcome page such as:
"Welcome John Smith" using a <%response.write(session("contactname"))%> and where "John Smith" is contained in a single field in my database.
I then ask the user to complete a brief survey and capture those results in a form, when I try to capture "contactname" it only displays the first name, i.e. "John". How do I capture the entire "contactname" on my form?
Any help would be appreciated!