The compiler error ("Cannot declare a namespace and a type both named A") appears e.g. if you click "Insert image".
Do you have any idea?
Are there any problems with entries in the web.config?
<appSettings>
<add key="ConnectionStringDE" value="data ..." />
</appSettings>
<system.web>
<compilation defaultLanguage="vb" debug="true" >
<assemblies>
<add assembly="CuteEditor, Version=5.1.0.0, Culture=neutral, PublicKeyToken=3858aa6802b1223a, Custom=null"/>
</assemblies>
</compilation>
<customErrors defaultRedirect="..." />
<httpRuntime maxRequestLength="10000000" executionTimeout="3600" />
<authentication mode="Windows" />
<authorization>
<allow users="*" />
</authorization>
<sessionState mode="SQLServer" ...>
<globalization requestEncoding="utf-8" responseEncoding="utf-8" />
</system.web>
Are any conflictc possible with other assemplies?