リンクをクリックすると(サイトにログインせずに)、次のページに移動します。
http://localhost:59196/Login.aspx?ReturnUrl=%2fTest%2fContacts.aspx
サイトにログインすると、Contacts.aspxページではなくホームページにリダイレクトされます。どうすればこれを解決できますか?
これを行うと、ログインしていません。
protected void Page_Load(object sender, EventArgs e)
{
}
protected void Login1_LoggingIn(object sender, LoginCancelEventArgs e)
{
Response.Redirect("Home");
}