Thats the part of code where Cute Editors are loaded :
<tr>
<td width="10"></td>
<td colspan="11" align="center" Class="grayBorder" dir="ltr">
<CuteEditor:Editor runat="Server" ID="edtShortDescription" EditorBodyStyle="direction:rtl;" Width="100%" Height="200" AllowEditServerSideCode="false" UseRelativeLinks="false" AutoConfigure="Minimal" RemoveTBODYTag="true"></CuteEditor:Editor>
</td>
<td width="10"></td>
</tr>
<tr><td class="mediumSpace"></td></tr>
<tr><td width="10"></td><td class="CaptionText" colspan="11"><%=InterfaceLanguage.getLanguageKey("FULLDESCRIPTION")%>:</td><td width="10"></td></tr>
<tr>
<td width="10"></td>
<td colspan="11" align="center" Class="grayBorder" dir="ltr">
<CuteEditor:Editor runat="Server" ID="edtDescription" EditorBodyStyle="direction:rtl;" Width="100%" Height="300" AllowEditServerSideCode="false" UseRelativeLinks="false" AutoConfigure="Full" RemoveTBODYTag="true"></CuteEditor:Editor>
</td>
<td width="10"></td>
</tr>
thats the codebehind :
edtDescription.SetSecurityAllowCopy(false);
edtDescription.SetSecurityAllowCreateFolder(true);
edtDescription.SetSecurityAllowDelete(false);
edtDescription.SetSecurityAllowDeleteFolder(false);
edtDescription.SetSecurityAllowModify(false);
edtDescription.SetSecurityAllowMove(false);
edtDescription.SetSecurityAllowRename(true);
edtDescription.SetSecurityAllowUpload(true);
edtDescription.Setting["CuteEditorFileStorageType"] = typeof(SqlFileStorage).AssemblyQualifiedName;
edtDescription.Setting["connectionString"] = Session["connStr"].ToString();
edtDescription.Setting["absolutePath"] = Session["filesDir"].ToString();
edtDescription.Setting["virtualPath"] = Session["virtualFilesDir"].ToString().Substring(0, Session["virtualFilesDir"].ToString().Length - 1);