Click to See Complete Forum and Search --> : LoginView Redirect


mlawton40
March 1st, 2007, 06:45 AM
I have a login view with the anonomous template being the login box and I would like the:

<code>
<LoggedInTemplate>

<%-- Default Shared Area will be displayed here --%>

</LoggedInTemplate>
</code>

to redirect to /User/FileList.aspx

I would like to do the redirect in the aspx.cs file.

Any ideas?

Cheers, Mark

srinika
March 1st, 2007, 08:34 AM
I'm also a beginner,

2 hints :

1. Using Response.Redirect("Ur new page")
2. Using PostbackURL

mlawton40
March 1st, 2007, 10:34 AM
Yep I know that but if I put that in the onLoad method of default.aspx then it will also redirect me to the page when it is an anonomous user.