Ask a Question related to ASP.NET Security, Design and Development.
-
Manimaran M #1
FormsAuthentication Signout should redirect to frameless page!
Hi,
I'm using FormsAuthentication in an web application that uses Frames.
When the user clicks on "logout" button, I have the following code:
FormsAuthentication.SignOut();
The challenge here is that, SignOut redirects to the logon page specified in
the <forms> element in Web.Config. As a result, the logon page is loaded in
the same frame.
The requirement is that logon page should never be displayed within a frame
and any redirection to the logon page should behave like a hyperlink with
target="_top" property.
Any idea on how to combat this challenge?
Thanks in advance.
Regards,
Manimaran M.
Manimaran M Guest
-
FormsAuthentication.SignOut() problem
Hi All, (thanks in advance for your time) I have a standard login.aspx page (UserName\Password). When the user successully sign in they are... -
FormsAuthentication.SignOut not working
Hello This SignOut code is not working, any ideas? TIA. public class logout : System.Web.UI.Page { private void Page_Load(object sender,... -
FormsAuthentication - how to specify redirect page for disallowed
Dear Shaun, What you can do is, on the page_load event of the pages which have only 'admin' priveleges (or whatever high privelege you give only... -
FormsAuthentication.SignOut() not working.
In my search to understand ASP.NET security, I went to www.asp.net and was looking at their beginner source code. Here is the link to the code that I... -
FormsAuthentication.signout does not ??
I am using forms authentication to secure my pages. For my logout, I created a logout page with FormsAuthentication.signout is called at the... -
Hernan de Lahitte #2
Re: FormsAuthentication Signout should redirect to frameless page!
You might use some jscript on the client side (ie onload page event) that
force a top resposition of the page.
In this case, this page will be the login page configured in your Forms
settings.
HernanDL.
"Manimaran M" <manimaranm7@hotmail.com> wrote in message
news:uWXJKnj9DHA.2760@TK2MSFTNGP09.phx.gbl...in> Hi,
>
> I'm using FormsAuthentication in an web application that uses Frames.
>
> When the user clicks on "logout" button, I have the following code:
>
> FormsAuthentication.SignOut();
>
> The challenge here is that, SignOut redirects to the logon page specifiedin> the <forms> element in Web.Config. As a result, the logon page is loadedframe> the same frame.
>
> The requirement is that logon page should never be displayed within a> and any redirection to the logon page should behave like a hyperlink with
> target="_top" property.
>
> Any idea on how to combat this challenge?
>
> Thanks in advance.
>
> Regards,
> Manimaran M.
>
>
Hernan de Lahitte Guest



Reply With Quote

