I have not followed all along, but it seems that the problem is whith the
schema. I have a login schema that does just that.
1. Every one of my pages is NOT cached, so that CF is called everytime.
2. I have my session space either initialized (logged-in) or uninitialized
(logged-out.) There are tricks to do that.
3. In my Application.cfm I check for that and do something like this:
<cfif NOT IsDefined("Session.UserName")>
<cfinclude template="login.cfm">
<cfabort>
</cfif>
The back problem is then not an issue. When back is pressed (or forward,
does not matter), CF is called again and people would receive a login screen
or whatever. There are other issues associated with no caching and back
buttons that you would have to deal with, tho. If you decide to go on this
route I'll tell you more.
In general, when I use the web I use the back button a lot. When you have
just one page that redirects you with one of those meta tags, your back
chain is broken. You hit back and it seems that it does not move, because
it is redirecting you. I hate those. When I need to redirect, I use
cflocation instead. Back button friendly all the way.
Anyway, good look in your quest.
<Jaime/>
> -----Original Message-----
> From: Dylan Bromby [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 02, 2000 7:55 AM
> To: CF-Talk
> Subject: RE: CFHEADER
>
>
> Sorry, this one didn't work either.
>
> -----Original Message-----
> From: Chris Norloff [mailto:[EMAIL PROTECTED]]
> Sent: Thursday, November 02, 2000 7:09 AM
> To: CF-Talk
> Cc: [EMAIL PROTECTED]
> Subject: RE: CFHEADER
>
>
> Well, this is what I use (be sure to put it in the <HEAD> element). It
> meets HTML standards, but I'm having trouble with some caching
> proxies that
> seem to ignore any no-cache commands.
>
> <meta http-equiv="pragma" content="no-cache">
> <meta http-equiv="expires" content="Mon, 01 Jan 1990 12:34:56 GMT">
>
> Chris Norloff
>
------------------------------------------------------------------------------------------------
Archives: http://www.mail-archive.com/[email protected]/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists or send a message
with 'unsubscribe' in the body to [EMAIL PROTECTED]