How to completely disable all caching during debug?

  • Thread starter Thread starter keithb
  • Start date Start date
K

keithb

Using the VS built-in web server, class properties and datatables seem to be
getting cached between my debug sessions. How can I disable all caching?

Thanks,

Keith
 
Set up a #DEBUG section in global.asax that programatically turns off all
caching. NOTE: You will have to be extra careful to make sure your
production builds are not compiled with debug if you do this.

--
Gregory A. Beamer
MVP; MCP: +I, SE, SD, DBA
http://gregorybeamer.spaces.live.com

*************************************************
Think outside of the box!
*************************************************
 
Back
Top