开发者

<asp:updatepanel> is not present in Asp 2.0 aspx page

开发者 https://www.devze.com 2023-02-07 20:55 出处:网络
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 co

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>
0

精彩评论

暂无评论...
验证码 换一张
取 消