The question is "After sign out from email, Then we click a
back button , we can't go to the previous page ie inbox
page, It is displaying a login form only"
My doubt is How will code this , If u know please blog me
through this or my mail. my mail id is yoursguna@gmail.com

Answer Posted / lily antony

This is implemented through Authentication and Authorisation

In the web.config file
set the Authentication tag as
<authentication mode="Forms">
<forms name="myforms" loginUrl="LoginPage.aspx" >
</forms>
</authentication>
This means you are using forms authentication and the login
page name is LoginPage.aspx.

and the autorisation tag as
<authorization>
<deny users="?"/>
</authorization>
This means deny unauthenticated users.

In the LoginPage's Authentication Logic use the following
code if the user is valid.
FormsAuthentication.RedirectFromLoginPage
(txt_UserName.Text, false);

In the logic of the Signout button use
FormsAuthentication.Signout();

In all innerpages set the following code in the pageload
Response.Expires = 0;
Response.CacheControl = "no-cache";

For complete explanation refer Forms Authentication and
authorization in msdn.

Is This Answer Correct ?    9 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

How does http session work?

709


Less than one page, how many windows will you be able to maintain?

756


What is the server of asp.net?

716


What are the different types of sessions in asp.net? Name them?

879


What are the advantages and limitations of query string?

786


What is css in asp.net?

746


Explain what is the procedure to create the environment for asp.net? : asp.net mvc

763


What are the different types of events are occured when a client requests an ASP.NET page from IIS server?

799


Define dll hell?

808


What is asp.net web pages?

696


How Session outproc in Sqlserver stored?

2502


What are the asp.net 2.0 features?

730


Why is it preferred to not use finalize for clean up?

718


I have an external link in my application say www.xyztest.com. Today this site works on http protocal. Tommorow it may run on https. So i cant hardcore the protocal in the site. When a user clicks on the link how can i know if the external site works on http or https and takes him to that place?

1659


What are sql notifications and sql invalidations?

695