Mono MVC2 应用程序使用下面的控制器在浏览器中缓存订单页面。
如果在浏览器中按下 F5,旧页面仍然返回到浏览器。如果按 F5,如何返回新页面?看起来页面已缓存在服务器中,但 OutputCacheLocation.Downstream 必须仅在 borwser 中缓存页面。这是错误吗?
[Authorize]
public class DetailController : ControllerBase
{
[OutputCache(Location = OutputCacheLocation.Downstream, Duration = 20 * 60,VaryByParam = "_entity")]
public ActionResult Index(string _entity, int? orderId)
{
...