viewing whole word

bloody_football

Registered User.
Local time
Today, 22:14
Joined
Sep 8, 2004
Messages
70
I have
Code:
VALUE= <% =rsPlayers("name") %> >
which is fine if rsPlayers("name") doesn't have a space in it, if it does then it only prints up to the space. So "Mr Nooby" only comes out as "Mr".

Does anyone know the way of printing out the full word?

James
 
did you check the record in the database to make sure the whole content is actually there?
 
Last edited:
Sorry about the late reply Kodo, I forgot to put this thread in my subscription box!

Yes the whole word is there in the database, it still only shows the first word of the name :(
 
Try putting some quotes around it.
VALUE= "<% =rsPlayers("name") %>" >
 

Users who are viewing this thread

Back
Top Bottom