The ScriptManager must appear before any controls that need it

前端 未结 10 1810
爱一瞬间的悲伤
爱一瞬间的悲伤 2020-11-28 11:52

I have created a new ASP.NET Web Application, and after debugging i got Server Error

The control with ID \'WaitingPopup1\' requires a ScriptManager on

10条回答
  •  栀梦
    栀梦 (楼主)
    2020-11-28 12:26

    • with a head tag with runat="server"
    • inside a form tag with runat="server"
    • before the ContentPanels that contain controls that require it - typical controls with UpdatePanels:

    <%=PageTitle%>

    
     
    

提交回复
热议问题