i've got a page that i'm trying to keep from being cached. I've
got the following meta tags to instruct the browser not to cache the
pages, however, the meta tags themseleves are being stripped from my
code when it gets to the browser. Is there a way to instruct .Net,
perhaps through machine.config or web.config, to allow these meta
tags through to the browser?
<meta http-equiv="expires" content="0">
<meta http-equiv="pragma" content="no-cache">
<meta http-equiv="cache-control" content="no-cache">
<meta http-equiv="cache-control" content="no-store">
<meta http-equiv="cache-control" content="max-age=0">