当我将 fckEditor 设置为某个值时
fckDescription.Value = "Description Text";
它会产生问题,例如更新面板没有为 DropDownList 控件执行异步回发,并在 DropDownList 选择更改时给出错误:
Sys.WebForms.PageRequestManagerServerErrorException: An unknown error occurred while processing the request on the server. The status code returned from the server was: 500
但是当我注释掉这些行时
// fckDescription.Value = "Description Text";
它工作得很好......我想知道为什么会这样!!?!!
此外,fckEditor 位于 UpdatePanel 外部,DropDownList 控件位于 UpdatePanel 内部。