Golgappa.net | Golgappa.org | BagIndia.net | BodyIndia.Com | CabIndia.net | CarsBikes.net | CarsBikes.org | CashIndia.net | ConsumerIndia.net | CookingIndia.net | DataIndia.net | DealIndia.net | EmailIndia.net | FirstTablet.com | FirstTourist.com | ForsaleIndia.net | IndiaBody.Com | IndiaCab.net | IndiaCash.net | IndiaModel.net | KidForum.net | OfficeIndia.net | PaysIndia.com | RestaurantIndia.net | RestaurantsIndia.net | SaleForum.net | SellForum.net | SoldIndia.com | StarIndia.net | TomatoCab.com | TomatoCabs.com | TownIndia.com
Interested to Buy Any Domain ? << Click Here >> for more details...


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

Answers were Sorted based on User's Feedback



The question is "After sign out from email, Then we click a back button , we can't go to ..

Answer / 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

The question is "After sign out from email, Then we click a back button , we can't go to ..

Answer / s.amey

You can set below Property on page:-

Page.Forward();

Is This Answer Correct ?    0 Yes 0 No

The question is "After sign out from email, Then we click a back button , we can't go to ..

Answer / kumaran ns

Hi Lilly!
We have to write logic for that. Set History property to -1
or 0.

Is This Answer Correct ?    0 Yes 5 No

Post New Answer

More ASP.NET Interview Questions

To which side ( server ? client) does the user input data validation occur? Explain the reasons for it?

1 Answers   Siebel,


what is COM Object in Dot net?

6 Answers   CTS,


What is web.config. How many web.config files can be allowed to use in an application ?

10 Answers   Accenture, BirlaSoft, Infosys, InterGraph, Satyam, Wipro,


Which method is used to enforce garbage collection in .net?

0 Answers  


What is cookie less session? How it works?

2 Answers   TCS,


Is asp.net still used?

0 Answers  


Which data type does the rangevalidator control support?

0 Answers  


What is the namespace used to store the information about the user?s locale?

1 Answers   NeoSoft, Siebel,


What is state management technique?

0 Answers  


How would you get asp.net running in apache web servers?

0 Answers  


Any body Having SHAREPOINT Material plzzz? please material to send prasad.k12@gmail.com

0 Answers  


what is difference between User Control,Custom Contro1,Web server control and template controls

1 Answers  


Categories