我在asp.net的更新面板中遇到了CKEditor問題。 我有多個CKEditor頁面上的標籤控件,即每個標籤中有一個ckeditor。CKEditor在更新面板中無法正常工作
string scriptAdd = @"var editor = CKEDITOR.instances['ctl00_ContentPlaceHolder1_faqeditor']; if (editor) { editor.destroy(true); } CKEDITOR.replace('ctl00_ContentPlaceHolder1_faqeditor');";
ScriptManager.RegisterClientScriptBlock(this, typeof(Page), "", scriptAdd, true);
上述代碼片段有助於在更新面板中呈現編輯器。但是,回發完成後,它仍顯示較早的值,而不是更改後的值,即編輯器不反映在更新面板中更改標籤後所做的更改。
同樣的事情沒有更新面板工作得很好。
有沒有解決這個問題的方法?
我得到的錯誤,當我嘗試透過表格內更新面板「i.contentWindow爲空」。 – manu5987 2012-07-30 04:06:50