0

I am using HTML5 cache manifest to build to be able to load some dynamic ASP.NET pages (text and images) from database even without internet connection.

All working fine when I list my connectionString as a string in the code behind (c#) but when I try to access it from the web.config file it does not work because the web.config file cannot be cached somehow. I am including it in the CACHE section of my manifest along with all the other files that are correctly being cached.

Can you cache the app.config file or is there some other work around please?

Soner Gönül
  • 97,193
  • 102
  • 206
  • 364
JeanPaul Galea
  • 113
  • 3
  • 11

1 Answers1

0

The cache manifest has nothing to do with web.config.

Web.config is solely used by the server. The Cache Manifest is handled by the browser.

Your caching not working must have a different reason.

Sebastian Brand
  • 547
  • 4
  • 10