Velocity Reviews - Computer Hardware Reviews

Velocity Reviews > Newsgroups > Programming > ASP .Net > https and browser back button

Reply
Thread Tools

https and browser back button

 
 
Freddy
Guest
Posts: n/a
 
      06-18-2004
Hi,

The registration process in our web site is of 3 step process spanning 3
pages and it is performed on https.

I have noticed in some websites while doing credit card payments if we click
the back button of the browser we get a page saying "Warning page
expired...." etc.

But in the registration process when I click the back button the borwser is
displaying the previous page instead of "Warning page expired...." page. How
to get this page? The <Head></Head> section of registration pages looks as
follows,


<HEAD>
<title></title>
<meta http-equiv="Expires" CONTENT="0">
<meta http-equiv="Cache-Control" CONTENT="no-cache">
<meta http-equiv="Pragma" CONTENT="no-cache">
<meta content="Microsoft FrontPage 5.0" name="GENERATOR">
<meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
<meta content="JavaScript" name="vs_defaultClientScript">
<meta content="http://schemas.microsoft.com/intellisense/ie5"
name="vs_targetSchema">
<LINK href="/styles/styles.css" type="text/css" rel="stylesheet">
<script language="javascript" src="/script/javaScript.js"></script>
</HEAD>

Can anyone please suggest me how to implement this

Freddy


 
Reply With Quote
 
 
 
 
Patrice
Guest
Posts: n/a
 
      06-18-2004
Check first but my understanding is :
- the page is not in the cache
- non cached paged don't go in the history

As a result when you use the back button it hits the prievous page instaed
of this one...

--

"Freddy" <> a écrit dans le message de
news:...
> Hi,
>
> The registration process in our web site is of 3 step process spanning 3
> pages and it is performed on https.
>
> I have noticed in some websites while doing credit card payments if we

click
> the back button of the browser we get a page saying "Warning page
> expired...." etc.
>
> But in the registration process when I click the back button the borwser

is
> displaying the previous page instead of "Warning page expired...." page.

How
> to get this page? The <Head></Head> section of registration pages looks as
> follows,
>
>
> <HEAD>
> <title></title>
> <meta http-equiv="Expires" CONTENT="0">
> <meta http-equiv="Cache-Control" CONTENT="no-cache">
> <meta http-equiv="Pragma" CONTENT="no-cache">
> <meta content="Microsoft FrontPage 5.0" name="GENERATOR">
> <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
> <meta content="JavaScript" name="vs_defaultClientScript">
> <meta content="http://schemas.microsoft.com/intellisense/ie5"
> name="vs_targetSchema">
> <LINK href="/styles/styles.css" type="text/css" rel="stylesheet">
> <script language="javascript" src="/script/javaScript.js"></script>
> </HEAD>
>
> Can anyone please suggest me how to implement this
>
> Freddy
>
>



 
Reply With Quote
 
 
 
 
Freddy
Guest
Posts: n/a
 
      06-18-2004
Thanks Patrice.

Actually If the user goes from page 1 to page 2 and then hits the browser
back button I don't want page 1 to load or appear, instead I want "Warning
Page expired......" message which we normally get while we are doing credit
card transactions and do the same type of navigation on some websites. Note
all the files page 1, page 2 and page 3 are under ssl and accessed using
HTTPS


"Patrice" <> wrote in message
news:...
> Check first but my understanding is :
> - the page is not in the cache
> - non cached paged don't go in the history
>
> As a result when you use the back button it hits the prievous page instaed
> of this one...
>
> --
>
> "Freddy" <> a écrit dans le message de
> news:...
> > Hi,
> >
> > The registration process in our web site is of 3 step process spanning 3
> > pages and it is performed on https.
> >
> > I have noticed in some websites while doing credit card payments if we

> click
> > the back button of the browser we get a page saying "Warning page
> > expired...." etc.
> >
> > But in the registration process when I click the back button the borwser

> is
> > displaying the previous page instead of "Warning page expired...." page.

> How
> > to get this page? The <Head></Head> section of registration pages looks

as
> > follows,
> >
> >
> > <HEAD>
> > <title></title>
> > <meta http-equiv="Expires" CONTENT="0">
> > <meta http-equiv="Cache-Control" CONTENT="no-cache">
> > <meta http-equiv="Pragma" CONTENT="no-cache">
> > <meta content="Microsoft FrontPage 5.0" name="GENERATOR">
> > <meta content="Visual Basic .NET 7.1" name="CODE_LANGUAGE">
> > <meta content="JavaScript" name="vs_defaultClientScript">
> > <meta content="http://schemas.microsoft.com/intellisense/ie5"
> > name="vs_targetSchema">
> > <LINK href="/styles/styles.css" type="text/css" rel="stylesheet">
> > <script language="javascript" src="/script/javaScript.js"></script>
> > </HEAD>
> >
> > Can anyone please suggest me how to implement this
> >
> > Freddy
> >
> >

>
>



 
Reply With Quote
 
 
 
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off


Similar Threads
Thread Thread Starter Forum Replies Last Post
server side redirect https => https NOT working Axel ASP General 8 04-27-2009 02:02 AM
Enabling browser back button for GridView Paging and Sorting in Ajax1.1 and 3.5 (using Visual Studio 2005/ Visual studio 2008) anil reddy ASP .Net 0 02-11-2009 04:22 PM
After gmail logs out, cannot go back through browser back button Author ASP .Net 6 01-22-2009 03:24 PM
open-uri and HTTPS, or net/https with a redirect jotto Ruby 4 10-02-2006 07:26 AM
disable the back button provide the users with my own button to go back. sylvia sil ASP .Net 1 12-29-2004 04:41 PM



Advertisments
 



1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57