子页拖了个ScriptManager和UpdatePanel控件报错了
第一次用这个AJAX异步控件,我用的是VS2010,里面自带ScriptManager和UpdatePanel控件,在模板页和普通aspx页面拖了这俩控件都不报错,在子页里用就报错了
子页里拖得控件:
子页代码
<asp:ScriptManager runat="server">
</asp:ScriptManager>//子页里会报错
<asp:UpdatePanel runat="server">
</asp:UpdatePanel>
错误内容:ScriptManager 和 UpdatePanel 不是已知元素,原因可能是网站中存在编译错误,或者缺少web.config文件。
我有web.config文件。这个错误怎么改?我用UpdatePanel 就必须用ScriptManager ?
------解决方案--------------------<asp:UpdatePanel id="UpdatePanel1" runat="server">
<contenttemplate>
<%--内容--%>
</contenttemplate>
</asp:UpdatePanel>
------解决方案--------------------参考这个结构,
http://www.cnblogs.com/insus/p/3208744.html
在子页,只能放UpdatePanel.