Try this script. Type it on Notepad and save it as .htm, or .html file. Make sure in the Save dialog you first set the file type to 'All Files'
-------------
<HTML> <HEAD>
<TITLE>Double Quotes </TITLE>
<SCRIPT LANGUAGE="vbScript">
document.write("ok" & "<br>")
document.write(chr(34) & "OK" &amp;amp; chr(34) & "<br>")
document.write("Now" & "<br>")
document.write(chr(34) & "" &amp;amp; chr(34) & "," &chr(34) & "" & chr(34)& "," & chr(34) & "" & chr(34)& "<br>")
</SCRIPT>
</HEAD>
<BODY>
July 21, 2006<br>
Hello, Double Quotes
</BODY>
</HTML>
--------------
When you browse this file with IE you should see:
No comments:
Post a Comment