Ask a Question related to ASP, Design and Development.
-
Santhi #1
to prevent client side web page caching
Hi,
I wish to avoid caching asp pages at the user end .
Currently I have declared Response.Expires=0 at the top
of my asp page. I have also used the following meta tags
to prevent client side caching
<meta HTTP-EQUI="PRAGMA" CONTENT="NO-CACHE"></meta> but
still the pages are cached at the client side.
Any help or suggesstion would be greatly appreciated to
fix this issue
Thanks,
Santhi
Santhi Guest
-
How to Post back page from Client side code?
Hi, I am developing a website in ASP.NET. I want to have a client side code to confirm the deletion of some information from backend database. I... -
Force page to refresh/prevent caching
Greetings JGLADNICK. This is referring to your post on CFusion/WebForums of one year ado regarding "Prevent Caching". Have you ever been able to... -
Prevent 'Page has expired' when a client hits back to return to a search page
I have a search page that I want to enable private caching so that when a user hits the back button they dont get the page has expired error. I... -
Client side validation in aspx page
Can anyone tell me how I can perfor client side validation in javascript on a form in an aspx page. All the scripts I use to use in classic asp... -
stopping client side caching
What can be done to keep pages from caching and to hit the server each and every time they are accessed? When our users hit their back button on... -
Ray at #2
Re: to prevent client side web page caching
Try this.
[url]http://www.aspfaq.com/2022[/url]
Ray at work
"Santhi" <santhi.dhanasekaran@aa.com> wrote in message
news:016201c389d5$6704e800$a401280a@phx.gbl...> Hi,
> I wish to avoid caching asp pages at the user end .
> Currently I have declared Response.Expires=0 at the top
> of my asp page. I have also used the following meta tags
> to prevent client side caching
> <meta HTTP-EQUI="PRAGMA" CONTENT="NO-CACHE"></meta> but
> still the pages are cached at the client side.
>
> Any help or suggesstion would be greatly appreciated to
> fix this issue
>
> Thanks,
> Santhi
Ray at Guest
-
Santhi #3
Re: to prevent client side web page caching
Ray,
Thanks for the information. It works. Iam intereseted to
know what type of code is inserted by the server and will
there be any impact for the pages posted by the current
page with the header 'no cache'
Thanks,
santhitags>-----Original Message-----
>Try this.
>[url]http://www.aspfaq.com/2022[/url]
>
>Ray at work
>
>"Santhi" <santhi.dhanasekaran@aa.com> wrote in message
>news:016201c389d5$6704e800$a401280a@phx.gbl...>> Hi,
>> I wish to avoid caching asp pages at the user end .
>> Currently I have declared Response.Expires=0 at the top
>> of my asp page. I have also used the following meta>>> to prevent client side caching
>> <meta HTTP-EQUI="PRAGMA" CONTENT="NO-CACHE"></meta> but
>> still the pages are cached at the client side.
>>
>> Any help or suggesstion would be greatly appreciated to
>> fix this issue
>>
>> Thanks,
>> Santhi
>
>.
>Santhi Guest
-
Bullschmidt #4
Re: to prevent client side web page caching
This works for me:
Response.Expires = -1000
Best regards,
J. Paul Schmidt, Freelance ASP Web Developer
[url]http://www.Bullschmidt.com[/url]
ASP Design Tips, ASP Web Database Demo, Free ASP Bar Chart Tool...
*** Sent via Developersdex [url]http://www.developersdex.com[/url] ***
Don't just participate in USENET...get rewarded for it!
Bullschmidt Guest



Reply With Quote

