|
-
Mar 11th, 2000, 06:11 AM
#1
Thread Starter
New Member
Print #3, "<a href="http://216.61.43.234/mainctrldoc.html">Back </a>"
this line gives me the error since I have 2 sets of " "
what can I do to solve this problem if I don't have to use char(...)?if I have to use char(..),then what number is it for " ? thank you very much.
-
Mar 11th, 2000, 06:27 AM
#2
Member
I don't know what the keycode is for ", but if you are trying to make a web page, you don't need the " around links and stuff, but if you want, you can use '. that would work. you could have it be print #3, "<A HREF='site.htm'>". that would work.
-
Mar 11th, 2000, 06:33 AM
#3
Member
Ok, I just found out how to put the real quote in. It would be this:
Print #3, "<A HREF=" & chr(34) & "site.htm" & chr(34) & ">"
Try that. It should work.
-
Mar 11th, 2000, 06:36 AM
#4
Hyperactive Member
chr(34) =
Hi,
Rats. greendey, you beat me to it.
Print #3, "<a href=" & chr(34) & "http://216.61.43.234/mainctrldoc.html" & chr(34) & ">Back </a>"
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|