ログイン コントロールをラップする更新パネル コントロールがあります。ログイン後のユーザーに、すでにセットアップされている changepassword コントロールに移動してもらいたい。しかし、正しいユーザー名とパスワードのフィールドを入力して [ログイン] をクリックすると、ページが更新されます。どうすればこれを止めることができますか?
<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>