Re: Browser is caching files even when I use META tags to prevent cac hing.

2001-03-20 Thread Savan Thongvanh



pragma="no-cache"




Kevin Gilchrist <[EMAIL PROTECTED]> on 03/20/2001 10:26:21 AM

Please respond to [EMAIL PROTECTED]

To:   CF-Talk <[EMAIL PROTECTED]>
cc:(bcc: Savan Thongvanh/DSM/Seabury)

Subject:  Browser is caching files even when I use META tags to prevent cac
  hing.



Hi all,

I'm developing a small intranet app where I have two panes, a top-half and
bottom-half.
The top frame contains a table where a user can click on a cell and it
triggers an update to the bottom frame.
This only works for the first time a user clicks on a cell.
Each row has a unique primary key field that I insert into the URL as
Edit_ID.

The table cell code looks like this:

 Test6


I also have the following meta tags at the top of each page:





Is there something I'm missing?

Thanks,
Kevin
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Browser is caching files even when I use META tags to prevent cac hing.

2001-03-20 Thread Greg Wolfinger

I've herd of problems like this when using IE 5.0.  What browser are you
testing this app on?

---=@ greg @=--
- Original Message -
From: "Kevin Gilchrist" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, March 20, 2001 11:26 AM
Subject: Browser is caching files even when I use META tags to prevent cac
hing.


> Hi all,
>
> I'm developing a small intranet app where I have two panes, a top-half and
> bottom-half.
> The top frame contains a table where a user can click on a cell and it
> triggers an update to the bottom frame.
> This only works for the first time a user clicks on a cell.
> Each row has a unique primary key field that I insert into the URL as
> Edit_ID.
>
> The table cell code looks like this:
>
> 
onClick="top.data_pane.location.pathname='/maintenance/add_project-form.cfm?
> Edit_ID=42';"> Test6
> 
>
> I also have the following meta tags at the top of each page:
>
> 
> 
> 
>
> Is there something I'm missing?
>
> Thanks,
> Kevin
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



Re: Browser is caching files even when I use META tags to prevent cac hing.

2001-03-20 Thread Nick McClure

Meat tags do not always clear the cache. It is best if this is sent as an 
HTTP header.

 I believe is the correct syntax

Also in some web servers you can add HTTP headers to all requests. If you 
like everything including images to not be cached this would be the way to go.


At 11:26 AM 3/20/2001 -0500, you wrote:
>Hi all,
>
>I'm developing a small intranet app where I have two panes, a top-half and
>bottom-half.
>The top frame contains a table where a user can click on a cell and it
>triggers an update to the bottom frame.
>This only works for the first time a user clicks on a cell.
>Each row has a unique primary key field that I insert into the URL as
>Edit_ID.
>
>The table cell code looks like this:
>
>DEFANGED_OnClick="top.data_pane.location.pathname='/maintenance/add_project-form.cfm?
>Edit_ID=42';"> Test6
>
>
>I also have the following meta tags at the top of each page:
>
>
>
>
>
>Is there something I'm missing?
>
>Thanks,
>Kevin
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Browser is caching files even when I use META tags to prevent cac hing.

2001-03-20 Thread Ric Smith

Some of our clients had this problem and we found out it was
there proxy server.

Ric Smith


-Original Message-
From: Greg Wolfinger [mailto:[EMAIL PROTECTED]]
Sent: Tuesday, March 20, 2001 11:34 AM
To: CF-Talk
Subject: Re: Browser is caching files even when I use META tags to
prevent cac hing.


I've herd of problems like this when using IE 5.0.  What browser are you
testing this app on?

---=@ greg @=--
- Original Message -
From: "Kevin Gilchrist" <[EMAIL PROTECTED]>
To: "CF-Talk" <[EMAIL PROTECTED]>
Sent: Tuesday, March 20, 2001 11:26 AM
Subject: Browser is caching files even when I use META tags to prevent cac
hing.


> Hi all,
>
> I'm developing a small intranet app where I have two panes, a top-half and
> bottom-half.
> The top frame contains a table where a user can click on a cell and it
> triggers an update to the bottom frame.
> This only works for the first time a user clicks on a cell.
> Each row has a unique primary key field that I insert into the URL as
> Edit_ID.
>
> The table cell code looks like this:
>
> 
onClick="top.data_pane.location.pathname='/maintenance/add_project-form.cfm?
> Edit_ID=42';"> Test6
> 
>
> I also have the following meta tags at the top of each page:
>
> 
> 
> 
>
> Is there something I'm missing?
>
> Thanks,
> Kevin
>
>
~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Browser is caching files even when I use META tags to prevent cac hing.

2001-03-20 Thread Jack Tumlin

Ric,

Did your clients stop using the proxy server to get around the problem or 
did you come up with a fix?

At 12:19 PM 3/20/2001 -0500, you wrote:
>Some of our clients had this problem and we found out it was
>there proxy server.
>
>Ric Smith

Jack Tumlin
Vice President Business Development
Millennium Software, Inc.
The Software Solutions Company
[EMAIL PROTECTED]
www.millsoftinc.com


~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists



RE: Browser is caching files even when I use META tags to prevent cac hing.

2001-03-20 Thread Keith C. Ivey

Jack Tumlin wrote:

> Did your clients stop using the proxy server to get around the
> problem or did you come up with a fix?

If the problem is related to a proxy server then nothing you 
do with META tags is likely to help, because proxy servers 
generally don't look inside HTML documents for META tags.  They 
use real HTTP headers, which are applicable for graphics, PDF 
files, audio files, text files, and anything else transferred 
by HTTP.  You can use CFHEADER to create HTTP headers.

You might want to look at http://www.mnot.net/cache_docs/ .

Keith C. Ivey <[EMAIL PROTECTED]>
Webmaster, EEI Communications
66 Canal Center Plaza, Suite 200
Alexandria, VA  22314
Telephone:  703-683-0683
Fax:  703-683-4915
Web Site:  http://www.eeicommunications.com

~~
Structure your ColdFusion code with Fusebox. Get the official book at 
http://www.fusionauthority.com/bkinfo.cfm

Archives: http://www.mail-archive.com/cf-talk@houseoffusion.com/
Unsubscribe: http://www.houseoffusion.com/index.cfm?sidebar=lists