Good and full implementation of RSS feeds in ASP.net MVC

前端 未结 3 1410
故里飘歌
故里飘歌 2021-02-06 18:51

I\'ve seen a few examples of RSS Feeds in ASP.NET MVC, like this, and some samples in projects (like Oxite), but none of them are complete.

Eg. None of them check for t

3条回答
  •  情歌与酒
    2021-02-06 19:14

    If you use HttpContext.Response.Cache.SetCacheability, SetExpires and SetMaxAge then the ASP.NET caching system will take care of this for you - it understands the If-Modified-Since header. This blog entry shows how you can create an MVC Action Filter to do the necessary in MVC.

提交回复
热议问题