On my homepage I have a guestbook.
Just before christmas someone wrote a message in my=20
guestbook. My guestbook pretty much look like this page=20
when you post a new message.=20
So what happend is that the message added in my guestbook=20
ended with =A4=A4=A4. Normally after app 40 characters it=20
changes lines, just like this page (Post a new message).=20
With this =A4=A4=A4 it doesn=B4t change lines. It just writes it=20
in one long line.=20

Does anyone know how to solve this problem or is this a=20
html problem?

Re: Character issues! by 1

1
Mon Dec 29 18:30:35 CST 2003

First off I'd find out what ASCII value this: ¤ is represented by. You can
do this using asc("¤")...

Then I'd use the replace command to replace all occurances of ¤ or ¤¤¤
(depending on whether they always show up in threes) with vbcrlf or whatever
is appropriate.... ie: replace(strTheString, "¤¤¤", vbcrlf) or similar....

Cheers


"Henrik Aberg" <anonymous@discussions.microsoft.com> wrote in message
news:022301c3ce52$3cd1fa20$a501280a@phx.gbl...
On my homepage I have a guestbook.
Just before christmas someone wrote a message in my
guestbook. My guestbook pretty much look like this page
when you post a new message.
So what happend is that the message added in my guestbook
ended with ¤¤¤. Normally after app 40 characters it
changes lines, just like this page (Post a new message).
With this ¤¤¤ it doesn´t change lines. It just writes it
in one long line.

Does anyone know how to solve this problem or is this a
html problem?