我访问了 Telerik 的网站并查看了他们的演示等...但是我在尝试在 RadEditor 中加载内容 (html) 时遇到问题。
我有一个 Button_Click 事件,我在其中获取我的 html 字符串,然后将其设置为 RadEditor。RadEditor 位于 RadWindow 内,仅在单击按钮时才可见。
protected void btnSubmitHtml_Click(object sender, EventArgs e)
{
RadEditor1.Content = "<p>hello there</p>";
RadWindow1.Visible = true;
}
由于某些奇怪的原因,这不会显示 RadEditor 中的 html。我怀疑这是与此问题有关的页面生命周期。
有什么建议可以解决这个问题吗?