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 are the new features added from ASP to ASP.NET?
Am not able to move the controls on the form freely in asp.net 3.5 even though I selected the position as relative or absolute for those controls. What should I do to overcome this?
Which validator control you use if you need to make sure the values in two different controls matched?
What are the Types of objects in ASP
What is inproc and outproc?
3. What goals do you have in your career?
What r the asp.net list controls and difference between them?
Differentiate between globalization and localization.
What's the difference between viewstate and sessionstate?
What is difference between session and cookies in asp net?
Which data type does the rangevalidator control support?
What are the disadvantages of using session?
Explain server control extensibility with reference to asp.net 2.0 ?
Elaborate differentiation between ViewState and SessionState?
How many validators do ASP.NET have?