Re: [ACFUG Discuss] cfcontent in IE7

2007-08-28 Thread Dean H. Saxe
Why don't you have values in your pragma and cache-control headers?   
That's not legal HTTP syntax and could be one of IE's issues.


-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"Dissent is the purest form of patriotism."
--Thomas Jefferson


On Aug 28, 2007, at 5:00 PM, Troy Jones wrote:

Does anyone know why there is an issue in IE7 with ? I  
used the following code and it works as intended in Firefox but  
yields a bunch of garbage in IE7. I would appreciate any help I  
could get.
















Not much help was available from livedocs as this code sample is  
amost entirely verbatim from their examples.




Troy Jones

Dynapp Support Team

678-528-2952




-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-




-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] cfcontent in IE7

2007-08-28 Thread Douglas Knudsen
Also, might just be the mime-type
http://www.w3schools.com/media/media_mimeref.asp

DK

On 8/28/07, Dean H. Saxe <[EMAIL PROTECTED]> wrote:
>
> Why don't you have values in your pragma and cache-control headers?
> That's not legal HTTP syntax and could be one of IE's issues.
>
> -dhs
>
>
> Dean H. Saxe, CISSP, CEH
> [EMAIL PROTECTED]
> "Dissent is the purest form of patriotism."
>  --Thomas Jefferson
>
>
> On Aug 28, 2007, at 5:00 PM, Troy Jones wrote:
>
> > Does anyone know why there is an issue in IE7 with ? I
> > used the following code and it works as intended in Firefox but
> > yields a bunch of garbage in IE7. I would appreciate any help I
> > could get.
> >
> >
> >
> > 
> >
> > 
> >
> > 
> >
> > 
> >
> >
> >
> > Not much help was available from livedocs as this code sample is
> > amost entirely verbatim from their examples.
> >
> >
> >
> > Troy Jones
> >
> > Dynapp Support Team
> >
> > 678-528-2952
> >
> >
> >
> >
> > -
> > Annual Sponsor - Figleaf Software
> >
> > To unsubscribe from this list, manage your profile @
> > http://www.acfug.org?fa=login.edituserform
> >
> > For more info, see http://www.acfug.org/mailinglists
> > Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> > List hosted by FusionLink
> > -
>
>
>
> -
> Annual Sponsor FigLeaf Software - http://www.figleaf.com
>
> To unsubscribe from this list, manage your profile @
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists
> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by http://www.fusionlink.com
> -
>
>
>
>


-- 
Douglas Knudsen
http://www.cubicleman.com
this is my signature, like it?



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



RE: [ACFUG Discuss] cfcontent in IE7

2007-08-28 Thread Charlie Arehart
Besides the (as always) sage advice of Dean and Doug, I'll note as well that
sometimes when working with this sort of code, things fail simply because
the first time you ran the code there was an error, and you fixed it, and
refreshed the page, but the browser is still caching the old bad page (or
just some aspect of it). 
 
Try closing the browser and reopening it (or even just browsing the page in
a new window or tab). Let us know if that works.
 
There could be other issues, of course. I've not considered your code
carefully. This is just such a common problem and easy first solution to
try/rule out.
 
/charlie
 

  _  

From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones
Sent: Tuesday, August 28, 2007 5:01 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] cfcontent in IE7



Does anyone know why there is an issue in IE7 with ? I used the
following code and it works as intended in Firefox but yields a bunch of
garbage in IE7. I would appreciate any help I could get.

 









 

Not much help was available from livedocs as this code sample is amost
entirely verbatim from their examples.

 

Troy Jones

Dynapp Support Team

678-528-2952

 


- 
Annual Sponsor - Figleaf Software   

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform 

For more info, see http://www.acfug.org/mailinglists 
Archive @ http://www.mail-archive.com/discussion%40acfug.org/ 
List hosted by FusionLink   
- 



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-



Re: [ACFUG Discuss] cfcontent in IE7

2007-08-28 Thread Dean H. Saxe
FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache- 
Control: no-cache, no-store, must-revalidate for such requests to  
prevent exactly what Charlie is referring to.


-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"[U]nconstitutional behavior by the authorities is constrained only  
by the peoples' willingness to contest them"

--John Perry Barlow


On Aug 28, 2007, at 5:54 PM, Charlie Arehart wrote:

Besides the (as always) sage advice of Dean and Doug, I'll note as  
well that sometimes when working with this sort of code, things  
fail simply because the first time you ran the code there was an  
error, and you fixed it, and refreshed the page, but the browser is  
still caching the old bad page (or just some aspect of it).


Try closing the browser and reopening it (or even just browsing the  
page in a new window or tab). Let us know if that works.


There could be other issues, of course. I've not considered your  
code carefully. This is just such a common problem and easy first  
solution to try/rule out.


/charlie


From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones
Sent: Tuesday, August 28, 2007 5:01 PM
To: discussion@acfug.org
Subject: [ACFUG Discuss] cfcontent in IE7

Does anyone know why there is an issue in IE7 with ? I  
used the following code and it works as intended in Firefox but  
yields a bunch of garbage in IE7. I would appreciate any help I  
could get.
















Not much help was available from livedocs as this code sample is  
amost entirely verbatim from their examples.




Troy Jones

Dynapp Support Team

678-528-2952




-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-
-
Annual Sponsor - Figleaf Software

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by FusionLink
-




-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] cfcontent in IE7

2007-08-28 Thread Charlie Arehart
Though doesn't it make sense to add that there are times when the content of
the page might not otherwise call for those settings? If you set them
always, you could force reloads of the page when it might otherwise benefit
from caching. 

I just meant to say that when first building (or when editing) the code that
builds such a page, you just want to keep this caveat in mind (of needing
sometimes to "re-open" the page) if you ever browse the page and get an
error, or perhaps even when you modify a working page. You just need to
force a reload (and I thought I'd noticed that forced reloads, as available
in various browsers) didn't do the trick.

/charlie

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Tuesday, August 28, 2007 6:22 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfcontent in IE7

FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache-
Control: no-cache, no-store, must-revalidate for such requests to prevent
exactly what Charlie is referring to.

-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"[U]nconstitutional behavior by the authorities is constrained only by the
peoples' willingness to contest them"
 --John Perry Barlow


On Aug 28, 2007, at 5:54 PM, Charlie Arehart wrote:

> Besides the (as always) sage advice of Dean and Doug, I'll note as 
> well that sometimes when working with this sort of code, things fail 
> simply because the first time you ran the code there was an error, and 
> you fixed it, and refreshed the page, but the browser is still caching 
> the old bad page (or just some aspect of it).
>
> Try closing the browser and reopening it (or even just browsing the 
> page in a new window or tab). Let us know if that works.
>
> There could be other issues, of course. I've not considered your code 
> carefully. This is just such a common problem and easy first solution 
> to try/rule out.
>
> /charlie
>



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





Re: [ACFUG Discuss] cfcontent in IE7

2007-08-29 Thread Dean H. Saxe
Correct Charlie, but in this case it would be helpful to ensure you  
always get fresh content until everything starts working.  You can  
alternatively use a MITM proxy like Paros to ensure all caching  
headers are ignored, thereby pulling fresh content all the time too.


-dhs


Dean H. Saxe, CISSP,  CEH
[EMAIL PROTECTED]
"[T]he people can always be brought to the bidding of the leaders.  
This is easy. All you have to do is to tell them they are being  
attacked, and denounce the pacifists for lack of patriotism and  
exposing the country to danger. It works the same in every country."

--Hermann Goering, Hitler's Reich-Marshall at the Nuremberg Trials


On Aug 28, 2007, at 11:09 PM, Charlie Arehart wrote:

Though doesn't it make sense to add that there are times when the  
content of

the page might not otherwise call for those settings? If you set them
always, you could force reloads of the page when it might otherwise  
benefit

from caching.

I just meant to say that when first building (or when editing) the  
code that
builds such a page, you just want to keep this caveat in mind (of  
needing
sometimes to "re-open" the page) if you ever browse the page and  
get an
error, or perhaps even when you modify a working page. You just  
need to
force a reload (and I thought I'd noticed that forced reloads, as  
available

in various browsers) didn't do the trick.

/charlie

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H.  
Saxe

Sent: Tuesday, August 28, 2007 6:22 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfcontent in IE7

FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache-
Control: no-cache, no-store, must-revalidate for such requests to  
prevent

exactly what Charlie is referring to.

-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"[U]nconstitutional behavior by the authorities is constrained only  
by the

peoples' willingness to contest them"
 --John Perry Barlow


On Aug 28, 2007, at 5:54 PM, Charlie Arehart wrote:


Besides the (as always) sage advice of Dean and Doug, I'll note as
well that sometimes when working with this sort of code, things fail
simply because the first time you ran the code there was an error,  
and
you fixed it, and refreshed the page, but the browser is still  
caching

the old bad page (or just some aspect of it).

Try closing the browser and reopening it (or even just browsing the
page in a new window or tab). Let us know if that works.

There could be other issues, of course. I've not considered your code
carefully. This is just such a common problem and easy first solution
to try/rule out.

/charlie





-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-







-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform


For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] cfcontent in IE7

2007-08-29 Thread Troy Jones
Thanks for that, it worked. 

Troy Jones
Dynapp Support Team
678-528-2952
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Tuesday, August 28, 2007 6:22 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfcontent in IE7

FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache- 
Control: no-cache, no-store, must-revalidate for such requests to  
prevent exactly what Charlie is referring to.

-dhs


Dean H. Saxe, CISSP, CEH
[EMAIL PROTECTED]
"[U]nconstitutional behavior by the authorities is constrained only  
by the peoples' willingness to contest them"
 --John Perry Barlow


On Aug 28, 2007, at 5:54 PM, Charlie Arehart wrote:

> Besides the (as always) sage advice of Dean and Doug, I'll note as  
> well that sometimes when working with this sort of code, things  
> fail simply because the first time you ran the code there was an  
> error, and you fixed it, and refreshed the page, but the browser is  
> still caching the old bad page (or just some aspect of it).
>
> Try closing the browser and reopening it (or even just browsing the  
> page in a new window or tab). Let us know if that works.
>
> There could be other issues, of course. I've not considered your  
> code carefully. This is just such a common problem and easy first  
> solution to try/rule out.
>
> /charlie
>
>
> From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones
> Sent: Tuesday, August 28, 2007 5:01 PM
> To: discussion@acfug.org
> Subject: [ACFUG Discuss] cfcontent in IE7
>
> Does anyone know why there is an issue in IE7 with ? I  
> used the following code and it works as intended in Firefox but  
> yields a bunch of garbage in IE7. I would appreciate any help I  
> could get.
>
>
>
> 
>
> 
>
> 
>
> 
>
>
>
> Not much help was available from livedocs as this code sample is  
> amost entirely verbatim from their examples.
>
>
>
> Troy Jones
>
> Dynapp Support Team
>
> 678-528-2952
>
>
>
>
> -
> Annual Sponsor - Figleaf Software
>
> To unsubscribe from this list, manage your profile @
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists
> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink
> -
> -
> Annual Sponsor - Figleaf Software
>
> To unsubscribe from this list, manage your profile @
> http://www.acfug.org?fa=login.edituserform
>
> For more info, see http://www.acfug.org/mailinglists
> Archive @ http://www.mail-archive.com/discussion%40acfug.org/
> List hosted by FusionLink
> -



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] cfcontent in IE7

2007-08-29 Thread Charlie Arehart
For the benefit of the viewing audience :-),  can you clarify what it was
that "worked" for you, Troy? 

It seems you're referring to Dean's last note, and that may be what you
meant. I'm just curious (for instance, did simply browing the page in a new
window not work for you)?

/charlie

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones
Sent: Wednesday, August 29, 2007 4:45 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] cfcontent in IE7

Thanks for that, it worked. 

Troy Jones
Dynapp Support Team
678-528-2952
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Tuesday, August 28, 2007 6:22 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfcontent in IE7

FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache-
Control: no-cache, no-store, must-revalidate for such requests to prevent
exactly what Charlie is referring to.

-dhs



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





RE: [ACFUG Discuss] cfcontent in IE7

2007-08-30 Thread Troy Jones
What did the trick was adding the values in the  tags to force
reloads. I previously had those values at "". When I added the values,
the browser correctly displayed the open/save dialog box and then the
content correctly displayed in the browser window with the Excel
worksheet embedded. Sorry if I wasn't clear on that, but yes, that was
the crux of the issue.

Troy Jones
Dynapp Support Team
678-528-2952
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Charlie
Arehart
Sent: Wednesday, August 29, 2007 5:12 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] cfcontent in IE7

For the benefit of the viewing audience :-),  can you clarify what it
was
that "worked" for you, Troy? 

It seems you're referring to Dean's last note, and that may be what you
meant. I'm just curious (for instance, did simply browing the page in a
new
window not work for you)?

/charlie

-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Troy Jones
Sent: Wednesday, August 29, 2007 4:45 PM
To: discussion@acfug.org
Subject: RE: [ACFUG Discuss] cfcontent in IE7

Thanks for that, it worked. 

Troy Jones
Dynapp Support Team
678-528-2952
-Original Message-
From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] On Behalf Of Dean H. Saxe
Sent: Tuesday, August 28, 2007 6:22 PM
To: discussion@acfug.org
Subject: Re: [ACFUG Discuss] cfcontent in IE7

FWIW, you should use the Pragma: no-cache, Expires: 0 and Cache-
Control: no-cache, no-store, must-revalidate for such requests to
prevent
exactly what Charlie is referring to.

-dhs



-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @ 
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-





-
Annual Sponsor FigLeaf Software - http://www.figleaf.com

To unsubscribe from this list, manage your profile @
http://www.acfug.org?fa=login.edituserform

For more info, see http://www.acfug.org/mailinglists
Archive @ http://www.mail-archive.com/discussion%40acfug.org/
List hosted by http://www.fusionlink.com
-