<asp:updatepanel> is not present in Asp 2.0 aspx page
I am using ASP 2.0 web application. I have installed ASP 2.0 Ajax Extender 1.0. Then I opened the web application to use UpdatePanel. However, element is not present. I am able to use Ajax Tool kit controls like AjaxCaleneder,... Can any one tell me how can get tag so that I can use updatepanel functionality.开发者_StackOverflow社区
Thanks in Advance
You can find an example here.
Basically, you need a ScriptManager before the UpdatePanel
<asp:ScriptManager ID="ScriptManager1" runat="server" />
<asp:UpdatePanel runat="server" id="UpdatePanel" updatemode="Conditional">
</asp:UpdatePanel>
精彩评论