why should i use FormsAuthentication.RedirectFromLoginPage
(); Method in Form Authentication?Without using this method
also it's good??
Answer Posted / uday kumar vuriti
FormsAuthentication.RedirectfromLoginPage() redirect the
user to the requested page without redirecting to default page.
Assume that we have 4 Pages and we are using forms
authentication with Login Page as Login.aspx and default
Redirection after Login Page as Home.aspx
MyApp/Login.aspx
MyApp/Home.aspx
MyApp/Profile.aspx
MyApp/Inbox.aspx
With FormsAuthentication.RedirectfromLoginPage():
If user requested for MyApp/Profile.aspx with out
Authentication Cookie(Login), he will be redirected to Login
Page and then after Login he will be redirected to
MyApp/Profile.aspx.
With out FormsAuthentication.RedirectfromLoginPage():
If we are not using
FormsAuthentication.RedirectfromLoginPage() then If user
requested for MyApp/Profile.aspx with out Logging in, he
will be redirected to Login Page and then after Login he
will be redirected to MyApp/Home.aspx.
the difference here is direct redirection of user to the
requested page.
| Is This Answer Correct ? | 9 Yes | 0 No |
Post New Answer View All Answers
What’s difference between “optimistic” and “pessimistic” locking?
What is the difference between web.config and machine.config in ASP.NET?
How do I send an email message from my ASP.NET page?
How many types of validators are there in asp net?
What is fulltrust?
What parameters can you pass in the url of the api?
What is web configuration file and how to use in web application
What can you do with asp.net?
What is mta?
What is caching in asp.net?
What is a pixel url?
How do http sessions work?
What is the use of express session?
To bind columns manually which tags do you need to add within the asp:datagrid ?
Where the viewstate is stored after the page postback?