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

What is the appSettings Section in the web.config file?

1 Answers   MindCracker,


How does windows service lifecycle differ from a .standard. Exe?

1 Answers  


Explain about secure socket layer?

1 Answers  


Can a master page have more than one contentplaceholder?

1 Answers  


What is session tracking & methods?

4 Answers   C Squared Systems,


how can u display multi language (i.e english,spanish...) web site?

2 Answers  


What tag do you use to add a hyperlink column to the DataGrid?

2 Answers   Siebel Systems,


How do I force the dispose method to be called automatically, as clients can forget to call dispose method?

1 Answers  


What are runtime hosts?

4 Answers   Microsoft,


Differentiate between globalization and localization.

1 Answers  


What is the differences between a primary key and a unique key in sql server?

1 Answers  


What are validator? Name the validation controls in asp.net? How do you disable them? Will the asp.net validators run in server side or client side? How do you do client-side validation in .net? How to disable validator control by client side javascript?

1 Answers  


Categories