Ask a Question related to ASP.NET Security, Design and Development.
-
Victor Sayas #1
Handling the pressing of the Back button in the toolbar
maybe this is a common problem but since i'm new here in this newsgroup i'll
just post it anyway.
my problem is when i logout from my web application and signout the
formsauthentication. and then press the back button in the toolbar, it goes
back to the previous page. i dont want my app to do that. it should be
redirected to the login.aspx page.so how can i handle this problem?
thanks. hope anyone can help me out.
Victor Sayas Guest
-
Pressing a button from another button?
Is it possible to press or click a button by pressing another button. I know it might seem strange, but it will be very handy if it is possible? ... -
Pressing a button from another function?
is there anyway of pressing a particular button from another function? If I have created my own button? is this possible? if anyone can help, this... -
Toolbar gone -- won't come back.
In FreeHand MX 11.0, I was dragging the main toolbar around to see if I could dock it somewhere, and it just disappeared! Now, if I press Ctrl-F2... -
Pressing button by AS
How can I make button state "Down" with Actionscript only. I need to change button state by pressing keyboard key. Thanx))) -
Append a text line by pressing a submit button
Hi, I made a small text field form, now I want to append the name of the text to a new line by pressing a submit button. The form action =... -
Chris Rolon #2
Re: Handling the pressing of the Back button in the toolbar
The back button is displaying the page from the local cache. You will have
to disable the local caching of pages.
Put Response.Cache.SetCacheability(HttpCacheability.No Cache) in the
Page_Load event handler. This will disable page caching.
--
Chris Rolon
"Victor Sayas" <vlsayas@radixsys.com> wrote in message
news:OG8sX4lCFHA.3376@TK2MSFTNGP12.phx.gbl...i'll> maybe this is a common problem but since i'm new here in this newsgroupgoes> just post it anyway.
>
> my problem is when i logout from my web application and signout the
> formsauthentication. and then press the back button in the toolbar, it> back to the previous page. i dont want my app to do that. it should be
> redirected to the login.aspx page.so how can i handle this problem?
>
> thanks. hope anyone can help me out.
>
>
Chris Rolon Guest
-
Khan Imran #3
Re: Handling the pressing of the Back button in the toolbar
If you are using forms authentication then most probably you are setting
session, what u will need to do is abandon the session on logout
Session.Abandon();
Hope this Help
Khan Imran
"Chris Rolon" <chris.rolon@removethis.neudesic.com> wrote in message
news:eP9lsYsCFHA.1604@TK2MSFTNGP10.phx.gbl...> The back button is displaying the page from the local cache. You will have
> to disable the local caching of pages.
>
> Put Response.Cache.SetCacheability(HttpCacheability.No Cache) in the
> Page_Load event handler. This will disable page caching.
>
>
>
> --
>
> Chris Rolon
> "Victor Sayas" <vlsayas@radixsys.com> wrote in message
> news:OG8sX4lCFHA.3376@TK2MSFTNGP12.phx.gbl...> i'll>> maybe this is a common problem but since i'm new here in this newsgroup> goes>> just post it anyway.
>>
>> my problem is when i logout from my web application and signout the
>> formsauthentication. and then press the back button in the toolbar, it>>> back to the previous page. i dont want my app to do that. it should be
>> redirected to the login.aspx page.so how can i handle this problem?
>>
>> thanks. hope anyone can help me out.
>>
>>
>
Khan Imran Guest
-
Victor Sayas #4
Re: Handling the pressing of the Back button in the toolbar
thanks for your help guys. all your help enhanced my application. but i was
wondering if you can just automatically disable this back and forward
buttons? can i do that? and if yes, how? thanks again.
"Victor Sayas" <vlsayas@radixsys.com> wrote in message
news:OG8sX4lCFHA.3376@TK2MSFTNGP12.phx.gbl...> maybe this is a common problem but since i'm new here in this newsgroup
> i'll just post it anyway.
>
> my problem is when i logout from my web application and signout the
> formsauthentication. and then press the back button in the toolbar, it
> goes back to the previous page. i dont want my app to do that. it should
> be redirected to the login.aspx page.so how can i handle this problem?
>
> thanks. hope anyone can help me out.
>
Victor Sayas Guest



Reply With Quote

