M Mr. x Nov 26, 2003 #1 Hello, How can I force refreshing of my web site, when a visitor enter my site. Thanks
S Steve C. Orr [MVP, MCSD] Nov 26, 2003 #2 Specify that you don't want your page to be cached. You can do that with code like this: Response.Expires = 0 Response.Cache.SetNoStore() Response.AppendHeader("Pragma", "no-cache")
Specify that you don't want your page to be cached. You can do that with code like this: Response.Expires = 0 Response.Cache.SetNoStore() Response.AppendHeader("Pragma", "no-cache")
M Mr. x Dec 2, 2003 #3 Thanks. I'll check this out. Steve C. Orr said: Specify that you don't want your page to be cached. You can do that with code like this: Response.Expires = 0 Response.Cache.SetNoStore() Response.AppendHeader("Pragma", "no-cache") -- I hope this helps, Steve C. Orr, MCSD, MVP http://Steve.Orr.net Hire top-notch developers at http://www.able-consulting.com Click to expand...
Thanks. I'll check this out. Steve C. Orr said: Specify that you don't want your page to be cached. You can do that with code like this: Response.Expires = 0 Response.Cache.SetNoStore() Response.AppendHeader("Pragma", "no-cache") -- I hope this helps, Steve C. Orr, MCSD, MVP http://Steve.Orr.net Hire top-notch developers at http://www.able-consulting.com Click to expand...