我有一个包含登录控件的更新面板控件。我希望用户在登录后转到已经设置好的更改密码控件。但是当我输入正确的用户名和密码字段并单击登录时,页面会刷新。我该如何阻止这个?
<asp:UpdatePanel ID="updateLogin" runat="server">
<ContentTemplate>
<asp:Login id="LoginAuth" runat="server">
<LayoutTemplate>
The username and password controls are here.
<asp:imagebutton id="Login" Enabled="true" OnClick="Login_OnClick" CommandName="Login" runat="server" AlternateText="Login" ImageUrl="powerstats/inc/img/login_up_gray.png"></asp:imagebutton>
</LayoutTemplate>
</asp:Login>
</ContentTemplate>
</asp:UpdatePanel>