I have a ASP.NET Login Control with Forms authentication.Even after successful Login it does not redirects to destination page.But it uses returnURL and stays at same Login page.How to make Login Control to redirect to specified destination page?

link|improve this question

45% accept rate
Did you debug the code? Are you sure the Login Attempt was successful? Has the Forms Auth cookie been set? Did you check Fiddler? All questions that require answers before help is given. – RPM1984 Oct 13 '10 at 8:08
feedback

1 Answer

If you haven't done so already, I think you just need to set the default url in the forms tag (web.config like so)

<forms loginUrl="blablabla.aspx" defaultUrl="YourDefaultPage.aspx" />  

Give it a go and let us know how you get on.

link|improve this answer
I also already set the default url in web.config file..but its not redirecting..i also used Login1_LoggedIn event which has a response.redirect to another page..that event is fired and all that response.redirect is also called..but fails to redirect.. – Abilash Oct 13 '10 at 8:38
@Abilash - can you please post the code in Login1_LoggedIn? Might help with the solution. Based on your comment "Response.Redirect is also called..but fails to redirect" - you should be using RedirectFromLoginPage. This will use the ReturnUrl QS and redirect appropriately. – RPM1984 Oct 13 '10 at 8:44
This is my code: protected void Login1_LoggedIn(object sender, EventArgs e) { if (Roles.IsUserInRole(Login1.UserName, "Admin1")) { Response.Redirect("~/Pages/UserManagement/changepassword.aspx"); }} – Abilash Oct 13 '10 at 9:18
is it going into the response.redirect portion of the code? – adrianos Oct 13 '10 at 9:26
ya it was going.. – Abilash Oct 13 '10 at 9:36
show 2 more comments
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.