Using forms authentication...
simple login form...

after user authenticates him / her self I want to take the user to another page...

But I noticed in ASP.net when one authenticates him / her self the login page just gets posted back when using:

FormsAuthentication.RedirectFromLoginPage(UserName, chkPersistant)

So what do I need to do here?

The app currently posts back to itself...

I read something that said
"We are calling the FormsAuthentications.RedirectFromLoginPage method, which takes care of granting ther authentication cookie to the client and then redirecting the client to the page she originally requested..."

Umm OK...but my app just posts back to the login.aspx page.

For instance, lets say a user tries to access a page without being authenticated, I use the loginURL attribute to set the login page for unauthenticated users in my web.config file. This works fine by redirecting the end user to that page. But once the user DOES authenticate themselves it simply reposts that login.aspx page, it does not take them to the page they were trying to go to.

Anyone have a clue ???