viewing whole word (1 Viewer)

bloody_football

Registered User.
Local time
Today, 16:09
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
 

Kodo

"The Shoe"
Local time
Today, 02:09
Joined
Jan 20, 2004
Messages
707
did you check the record in the database to make sure the whole content is actually there?
 
Last edited:

bloody_football

Registered User.
Local time
Today, 16:09
Joined
Sep 8, 2004
Messages
70
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 :(
 

Sergeant

Someone's gotta do it
Local time
Today, 02:09
Joined
Jan 4, 2003
Messages
638
Try putting some quotes around it.
VALUE= "<% =rsPlayers("name") %>" >
 

Users who are viewing this thread

Top Bottom