 |
BorlandTalk.com Borland discussion newsgroups
|
| View previous topic :: View next topic |
| Author |
Message |
mw Guest
|
Posted: Tue Sep 23, 2003 2:45 am Post subject: Refresh ISAPI |
|
|
How do you make sure that a .dll call doesn't come from the cache, and
instead always calls to the server?
|
|
| Back to top |
|
 |
Dennis Passmore Guest
|
Posted: Fri Oct 03, 2003 12:18 pm Post subject: Re: Refresh ISAPI |
|
|
Add the following code to all pages returned by the .dll and they will expire immediately
and require refreshing from the server.
<%
' Prevent client caching page
Response.Buffer = True
Response.cachecontrol="private"
Response.ExpiresAbsolute = Now() - 1
Response.AddHeader "Cache-Control", "must-revalidate"
Response.AddHeader "Cache-Control", "no-cache"
%>
Dennis Passmore
Ultimate Software, Inc.
|
|
| Back to top |
|
 |
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|