I am working to convert my intranet site from using frames and tables to using CSS. The problem I am running into is in dealing with writing the html that the client will see.
I have been using the response.write command to output html, such as:
Now I need to be able to output html that already uses the single quotation mark, such as:
I can't seem to figure out how to do this... PLEASE HELP!
Thanks,
-Brian-
I'm not an actor, but I play one on TV.
I have been using the response.write command to output html, such as:
Code:
response.write("<a href='index.asp'>Home</a>")
Code:
<a href="index.htm" onmouseover="style.backgroundColor='#264B88'>
I can't seem to figure out how to do this... PLEASE HELP!
Thanks,
-Brian-
I'm not an actor, but I play one on TV.