Hi Albert,
Here’s what I’ve done. I unpacked CKEditor in a ckeditor directory off wwroot in program files(86), netmake. I opened the samples and text was displayed. Then I created a Blank Application pasting in the below code that is the vanilla code from CKeditor to create a rich form. It compiles fine but when I run it, an error saying ‘Unexpected <’ displays.
Appreciate any thoughts you may have.
Thanks again!!
Here is the code I pasted:
<html>
<head>
<title>Sample CKEditor Site</title>
<script type=“text/javascript” src="/ckeditor/ckeditor.js"></script>
</head>
<body>
<form method=“post”>
<p>
My Editor:<br />
<textarea id=“editor1” name=“editor1”><p>Initial value.</p></textarea>
<script type=“text/javascript”>
CKEDITOR.replace( ‘editor1’ );
</script>
</p>
<p>
<input type=“submit” />
</p>
</form>
</body>
</html>