> > hi every one!
> > i have displayed a webpage "my_adserver" on my main webpage
[quoted text clipped - 12 lines]
> Response.Cache.SetNoStore()
> Response.AppendHeader("Pragma", "no-cache")
plz can u explain it that u have suggest i can't got a single
point,where i should place this piece of code?
Alexey Smirnov - 09 Jun 2007 10:22 GMT
> > > hi every one!
> > > i have displayed a webpage "my_adserver" on my main webpage
[quoted text clipped - 17 lines]
>
> - Show quoted text -
Put that code in the Page_Load event of the page where Page_Load event
"is not fired".
VB.NET
> > Response.Expires = 0
> > Response.Cache.SetNoStore()
> > Response.AppendHeader("Pragma", "no-cache")
C#
Response.Expires = 0;
Response.Cache.SetNoStore();
Response.AppendHeader("Pragma", "no-cache");