我在触发UpdatePanel后调试我的ASP.NET web应用程序时遇到以下错误:

htmlfile:未知运行时错误
并且在ScriptResource.axd文件中突出显示"updatePanelElement.innerHTML=rendering“。
发布于 2010-12-21 15:41:32
错误地将更新面板放在标签之间,而不是嵌套的标签之间。这个修复做到了,所以我从下面的代码中获取了它:
<table>
<tr>
<asp:UpdatePanel runat="Server">
<ContentTemplate>
<td>
//code here
</td>
</ContentTemplate>
</asp:UpdatePanel>
</td>
</table>至:
<table>
<tr>
<td>
<asp:UpdatePanel runat="Server">
<ContentTemplate>
//code here
</ContentTemplate>
</asp:UpdatePanel>
</td>https://stackoverflow.com/questions/441038
复制相似问题