Login.DestinationPageUrl does not work for me

4. July 2013

Login.DestinationPageUrl does not work for me

 Whenever i try to login , this control redirects to the page requested on the first place after logging in even though i have mentioned which page to open after user is logged in . Following is the solution to this :

1
2
3
4
5
6
7
protected void Login1_LoggedIn(object sender, EventArgs e) 
 
 
  Response.Redirect(ResolveClientUrl(Login1.DestinationPageUrl));
 
}

Be the first to rate this post

  • Currently .0/5 Stars.
  • 1
  • 2
  • 3
  • 4
  • 5

ASP.NET, C# ,