Basically I need for users of my CMS to be able to preview pages live right from the DB. They're always making little changes so that text lines up correctly etc and they want to preview the changes often.
If i cache the pages they can't preview them. Is there a way i can break the cache just for these previews?
Why not have two url for the page, e.g. a perview/page.aspx that does not have caching turned on.
You can also refesh the asp.net cache from code, however that will not refesh down stream caches, including the web browser.
Ian Ringrose
ringi at bigfoot dot com
> Basically I need for users of my CMS to be able to preview pages live right from the DB. They're always making little changes so that text lines up correctly etc and they want to preview the changes often.
>
> If i cache the pages they can't preview them. Is there a way i can break the cache just for these previews?