C#中关于updatePanel与freeTextBox不兼容的问题 如何解决呢个问题? 解决方案 在使用freeTextBox的那个页面(当然那个页面时有updatePanel的前提下)的后台代码中加入这两个方法: public new void RegisterOnSubmitStatement(string key, string script) { ScriptManager.RegisterOnSubmitStatement(this, typeof(Page), key, script); } [Obsolete] public override void RegisterStartupScript(string key, string script) { string newScript = script.Replace("FTB_AddEvent(window,'load',function () {", "").Replace("});", ""); ScriptManager.RegisterStartupScript(this, typeof(Page), key, newScript, false); } 这样就可以解决问题~~