Quantcast
Channel: Best implementation for an RSS feed in C# (ASP.net) - Stack Overflow
Browsing latest articles
Browse All 4 View Live

Answer by JBrooks for Best implementation for an RSS feed in C# (ASP.net)

In your .aspx page can't you just use:<%@ OutputCache Duration="60" VaryByParam="none" %>I have a blog posting where I have the results of a stored proc sent to my phone as an RSS feed HERE.

View Article



Answer by Kelsey for Best implementation for an RSS feed in C# (ASP.net)

In the past when I have implemented RSS I cached the RSS data in the HttpContext.Current.Cache.RSS data usually doesn't have to get updated that often (eg. once a minute is more than enough) so you...

View Article

Answer by Joel Coehoorn for Best implementation for an RSS feed in C# (ASP.net)

ASP.Net has some pretty good server-side caching built in. Assuming you are using these classes as part of normal aspx page or http handler (ashx), you can just tell ASP.Net to cache it aggressively...

View Article

Best implementation for an RSS feed in C# (ASP.net)

The thing I have a web app (asp.net) which needs to have a feed. So I used the System.ServiceModel.Syndication namespace to create the function that creates the 'news'. The thing is it executes...

View Article
Browsing latest articles
Browse All 4 View Live




Latest Images