i have an asp page to generate this link, "johnmark" is retrieved from a
field in SQL
so far it is ok, however now the situation, some data in the field have
space, like this "john mark".
the asp page generates the link, like this
http://abc/script.asp?applicant=john mark
but when i click the link, the link is just pasted like this
http://abc/script.asp?applicant=john (cut before the space)
i tried to use replace(fieldA, " ", "%20"), not work.
grateful for any ideas?
Thanks a lot.
tony
field in SQL
so far it is ok, however now the situation, some data in the field have
space, like this "john mark".
the asp page generates the link, like this
http://abc/script.asp?applicant=john mark
but when i click the link, the link is just pasted like this
http://abc/script.asp?applicant=john (cut before the space)
i tried to use replace(fieldA, " ", "%20"), not work.
grateful for any ideas?
Thanks a lot.
tony
Comment