﻿id	summary	reporter	owner	description	type	status	priority	milestone	component	version	resolution	keywords	cc
8833	Font Color is dropped!!!	JungHwan		"problem is the font color is not showing up when I call it from the database.
So i made a asp.net page.

The text of editor is same with the text of textbox.
but, when you click a button, you will find changed color of first line. you will find changed color of first line in editor.

do you understand? oh my bad english... ^^;

================================================================


<%@ Page Language=""vb"" AutoEventWireup=""false""  %>
<script language=""vb"" runat=""server"">
    Protected Sub Page_Load(ByVal sender As Object, ByVal e As EventArgs) Handles Me.Load
        TextBox1.Text = ""&lt;p&gt;"" _
 & ""&lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;&lt;span&gt;BLUE Text&lt;=Button Click and Look at this line!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;"" _
 & ""&lt;span&gt;BLACK Text&lt;/span&gt;&lt;br /&gt;"" _
 & ""&lt;font color=&quot;#00ff00&quot;&gt;GREEN Text&lt;br /&gt;""
    End Sub
        
    Protected Sub Button1_Click(sender As Object, e As EventArgs) Handles Button1.Click
        CKEditor1.Text = TextBox1.Text
    End Sub
</script>
<%@ Register Assembly=""CKEditor.NET"" Namespace=""CKEditor.NET"" TagPrefix=""CKEditor"" %>

<!DOCTYPE html PUBLIC ""-//W3C//DTD XHTML 1.0 Transitional//EN"" ""http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"">

<html xmlns=""http://www.w3.org/1999/xhtml"">
<head runat=""server"">
    <title></title>
</head>
<body>
    <form id=""form1"" runat=""server"">
    <div>
    
		<CKEditor:CKEditorControl ID=""CKEditor1"" runat=""server"" Height=""200"">
		&lt;p&gt;
 &lt;span style=&quot;color: rgb(0, 0, 255);&quot;&gt;&lt;span&gt;BLUE Text&lt;=Button Click and Look at this line!!!&lt;/span&gt;&lt;/span&gt;&lt;br /&gt;
 &lt;span&gt;BLACK Text&lt;/span&gt;&lt;br /&gt;
 &lt;font color=&quot;#00ff00&quot;&gt;GREEN Text&lt;br /&gt;
		</CKEditor:CKEditorControl>
    </div>
    <asp:TextBox ID=""TextBox1"" runat=""server"" Width=""862px""></asp:TextBox>
    <asp:Button ID=""Button1"" runat=""server"" Text=""Button"" />
    </form>
</body>
</html>"	Bug	closed	Normal		Server : ASP.Net	3.6.2	invalid		
