我在更新面板中有一个链接按钮,当更新面板进行部分页面渲染时,链接按钮消失了。
<asp:UpdatePanel ID="up" runat="server" ChildrenAsTriggers="true" UpdateMode="Conditional">
<ContentTemplate>
<asp:DropDownList ID="drp" runat="server" AutoPostBack="true" CausesValidation="true">
<asp:ListItem Text="" Value="" />
<asp:ListItem Text="a" Value="a" />
<asp:ListItem Text="b" Value="b" />
<asp:ListItem Text="c" Value="c" />
</asp:DropDownList>
<asp:LinkButton ID="link" Text="abc" runat="server" />
</ContentTemplate>
我认为这是因为链接按钮是使用脚本呈现的,并且该脚本在回发后没有运行。
我该如何克服呢?
谢谢,
埃里克