ID 为“Timer1”的控件需要页面上有ScriptManager。ScriptManager 必须在任何需要它的控件之前出现。(知识点:ScriptManager局部刷新)
原文链接:https://blog.csdn.net/myy629464/article/details/76783370
http://www.noobyard.com/article/p-ubifwkck-bo.html
解决办法:
代码:(那个窗体出错那个源中写)
<asp:ScriptManagerID="ScriptManager1" runat="server">
</asp:ScriptManager>
ScriptManager和UpdatePanel控件联合使用能够实现页面异步局部更新的效果。其中的UpdatePanel就是设置页面中异步局部更新区域,它必须依赖于ScriptManager存在,由于ScriptManger控件提供了客户端脚本生成与管理UpdatePanel的功能。