force refreshing of my web site

  • Thread starter Thread starter Mr. x
  • Start date Start date
M

Mr. x

Hello,
How can I force refreshing of my web site, when a visitor enter my site.

Thanks :)
 
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")
 

Ask a Question

Want to reply to this thread or ask your own question?

You'll need to choose a username for the site, which only take a couple of moments. After that, you can post your question and our members will help you out.

Ask a Question

Similar Threads


Back
Top