Hi demmett,
Please try the examle below, it should fix this issue.
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
<!-- #include file = "CuteEditor_Files/include_CuteEditor.asp" -->
<head>
</head>
<body>
<form name="theForm" method="post">
<%
Dim editor
Set editor = New CuteEditor
editor.ID = "CalendarContents"
editor.Draw()
%>
</form>
</body>
</html>
<script type="text/javascript">
function CuteEditor_FilterHTML(editor,code)
{
return code.split(""").join('"');
}
function CuteEditor_FilterCode(editor,code)
{
return code.split(""").join('"');
}
</script>
Regards,
Ken