Hi,
I've been searching for my problem but I couldn't find anything.
I'm new to Ckeditor, I'm trying to integrate it with my asp.net project.
So it loos like this in my asp.net page :
<!-- Editor -->
<div id="editor1" style="position:absolute;left:10px;top:50px;width:915px;height:675px;z-index:9;">
<CKEditor:CKEditorControl ID="CKEditor1" BasePath="/ckeditor/" runat="server" Width="915px" Height="675px"
Toolbar="Preview
Cut|Copy|Paste|PasteText|PasteFromWord|Print|-|SpellChecker|-|Undo|Redo|-|Find|Replace|-|SelectAll|RemoveFormat
/
Bold|Italic|Underline|Strike|-|Subscript|Superscript|NumberedList|BulletedList
Outdent|Indent |JustifyLeft|JustifyCenter|JustifyRight|JustifyBlock|BidiLtr|BidiRtl
Table|HorizontalRule|SpecialChar
/
Styles|Format|Font|FontSize| TextColor|BGColor">
<p style="margin-right:-14.2pt;text-align:justify">
<b>
<span style="font-size:12.0pt;font-family:Century Gothic, Sans-Serif">
The name is :
<label><%= name %></label>
</span>
</b>
</p>
</CKEditor:CKEditorControl>
</div>
In my codebehind I'm just trying to get a value from an sqlserver database to insert it in the ckeditor when the page loads, to make sure that there's no problem with the database I've just tried to do something like that : string name = "Something !";
The problem that I'm facing is that When I run it, I have just a blank area even the static text is not displayed !
and of course when I omit the text that I'm calling from codebehind and replace it with a static text, it works fine.
I just can't understand why is this happening ? Am I missing something ?
Please I need your help.
Thank you sooo much in advance.
Regards.

codebehind
In my codebehind I'm just trying to get a value from an sqlserver database to insert it in the ckeditor when the page loads, to make sure that there's no problem with the database.
didn't understand
Excuse me, but I didn't understand