Click here to Skip to main content
15,881,089 members
Please Sign up or sign in to vote.
0.00/5 (No votes)
See more:
sir,

I have try like below

XML
<cc1:Editor ID="Editor1"  runat="server" öncontentchanged="Editor1_ContentChanged" />
<asp:Literal ID="Literal1" runat="server">

at codebehind

C#
protected void Editor1_ContentChanged(object sender, EventArgs e)
{
    Literal1.Text = Editor1.Content;

}
Posted
Updated 1-Mar-13 0:05am
v2

1 solution

Well you should change
C#
öncontentchanged="Editor1_ContentChanged"
to
C#
oncontentchanged="Editor1_ContentChanged"

Meaning ön to on
Good luck,
OI
 
Share this answer
 

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900