Asp problem returning data from Session in an Input statement
I have an asp page trying to display data from a sql database. The database has a field where there are 2 words in a record (i.e. Web Developer). When I do a response.write Session("title"), I get everything in the field, (i.e. Web Developer). When I place the same code into my <input> statement, it only returns Web and not anything after a [SPACE]. Can someone please tell me what I need to do to get the whole result and not just partial??
I have an asp page trying to display data from a sql database. The database has a field where there are 2 words in a record (i.e. Web Developer). When I do a response.write Session("title"), I get everything in the field, (i.e. Web Developer). When I place the same code into my <input> statement, it only returns Web and not anything after a [SPACE]. Can someone please tell me what I need to do to get the whole result and not just partial??
so it's interpreting the value of the textbox as "word1", and ignoring "word2" (or rather, most browsers will treat it like an element property, and only ignore it if it's not a recognized property of a textbox).
Bookmarks