contentchanged编辑器未触发的事件

contentchanged编辑器未触发的事件

本文介绍了asp.net ajax contentchanged编辑器未触发的事件。的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

先生,



我试过以下



sir,

I have try like below

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



代码隐藏




at codebehind

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

}

推荐答案

öncontentchanged="Editor1_ContentChanged"

to

oncontentchanged="Editor1_ContentChanged"



含义ön on

祝你好运,

OI


Meaning ön to on
Good luck,
OI


这篇关于asp.net ajax contentchanged编辑器未触发的事件。的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

10-27 12:51