最开始.net ajax

前端之家收集整理的这篇文章主要介绍了最开始.net ajax前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

只能向页面中添加 ScriptManager 的一个实例

FormView控件中实现DropDownList+Ajax级联时,整个页面只能有一个ScriptManager控件,且ScripManager控件不能放在FormView里,而应放在Form下,FormView控件之前,否则会出现“只能向页面添加 ScriptManager 的一个实例”的错误

 

<body> <form id="form1" runat="server"> <asp:ScriptManager ID="ScriptManager1" runat="server"> </asp:ScriptManager><!--asp:ScriptManager在这里,一个就足够了--> <div> <asp:UpdatePanel ID="UpdatePanel1" runat="server">> <!--asp:UpdatePanel 1在这里--> <div> <ContentTemplate> <!--ContentTemplate容器--> <div> <asp:Label ID="Label1" runat="server" Text="Label"></asp:Label> <asp:Button ID="Button1" runat="server" Text="Button"></asp:Button>

</ContentTemplate> </asp:UpdatePanel> <!--asp:UpdatePanel 1在这里--> <div> </div> <div> <asp:UpdatePanel ID="UpdatePanel2" runat="server" RenderMode="Inline"> <!--asp:UpdatePanel 2在这里--> <div>

<ContentTemplate> <asp:DropDownList ID="ddlBrand" runat="server" AutoPostBack="true"> <asp:ListItem Text="请选择所属品牌" Value="0" /> </asp:DropDownList> </ContentTemplate> <Triggers> <asp:AsyncPostBackTrigger ControlID="ddlCarxID" EventName="SelectedIndexChanged" /> </Triggers> </asp:UpdatePanel> <!--asp:UpdatePanel 2在这里--> <div>

<asp:DropDownList ID="ddlCarxID" runat="server"> <asp:ListItem Text="请选择汽车车系" Value="0"></asp:ListItem> </asp:DropDownList> </div> </form> </body>

原文链接:https://www.f2er.com/ajax/166251.html

猜你在找的Ajax相关文章