<CE:Editor id="Editor1" ReadOnly="true" ThemeType="Office2007" EditorWysiwygModeCss="../example.css" runat="server" ></CE:Editor>
If you want to set it dynamically, the following is a full example:
<%@ Page Language="C#"%>
<%@ Register TagPrefix="CE" Namespace="CuteEditor" Assembly="CuteEditor" %>
<html>
<head>
<title>ASP and ASP.NET WYSIWYG Editor - Read only example</title>
</head>
<body>
<form id="Form1" runat="server">
<CE:Editor id="Editor1" ReadOnly="true" ThemeType="Office2007" EditorWysiwygModeCss="../example.css" runat="server" ></CE:Editor>
</form>
</body>
</html>
<script runat="server">
void Page_Load(object sender, System.EventArgs e)
{
if (IsPostBack)
{
}
else
{
Editor1.ReadOnly = true;
}
}
public void Submit(object sender, System.EventArgs e)
{
}
</script>
Regards,
Eric