Thanks a lot guys,
It works with the below code :)
<%
Response.CacheControl = "no-cache"
Response.AddHeader ("Pragma", "no-cache")
Response.Expires = -1
%>
Thanks a lot once again :)
On Tue, Dec 7, 2010 at 2:29 PM, nnksoft <[email protected]> wrote:
> Refer to the following article at MS Site to see how to prevent cache. As
> users, we can set IE to visit site every time. IE sets it *Automatic *so
> it caches every page to improve performance. But it some time cause headache
> to interactive sites.
> How to prevent caching in Internet Explorer
> http://support.microsoft.com/kb/234067/EN-US/
>
>
>
>
>
> On Mon, Dec 6, 2010 at 8:43 PM, prats mini <[email protected]>wrote:
>
>>
>> Hi Dan,
>>
>> Should this be written on the top of ASP page ??
>> Can you please confirm?
>>
>> Thanks,
>> Pratyusha
>>
>>
>> On Mon, Nov 29, 2010 at 8:59 PM, DanH <[email protected]> wrote:
>>
>>> add this to the top of your page:
>>>
>>> Response.CacheControl = "no-cache"
>>> Response.AddHeader "Pragma", "no-cache"
>>> Response.Expires = -1
>>>
>>>
>>> On Nov 27, 9:28 am, prats mini <[email protected]> wrote:
>>> > Hi All,
>>> >
>>> > On page load in asp, the page details are fetched from cache and it is
>>> not
>>> > hitting the server. If i change the settings in IE8 it is working.
>>> > Can anyone please let me know how can i do it from asp page?
>>> >
>>> > Please provide me some pointers, it is very important.
>>> > Thanks in advance.
>>>
>>
>>
>
>
>
>