so waay back i had some questions about setting up a login to secure a site i've been working on

there seems to be a rather annoying side effect

mostly html aside from a few simple asp scripts on particular pages

however if an update is made to the html such as a changed link or order of text changed even basic text content
the user needs to hit refresh in order to update it even if its been several days

i originally thought that it mush have been browser settings but taking out the login system seems to resolve it
simply closing browser and coming back to site and its updated
any ideas on this?


thanks,
MagusDF

Just a guess, but it sounds like the application pages are being cached. Add noCache to the page_load event, or application event in the Global.asax file.

Response.Cache.SetCacheability(HttpCacheability.NoCache)
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.