ASP.NET MVC 3.0, IIS 7, .NET 4

I have an action that returns data that seldom changes (almost static).

Is there an easy way to:

  1. return 304 "Not Modified" from action;
  2. include "Last-Modified" time stamp in the response.

I use return Content('my data'); for action result.

Basically I want an easy way to do what is talked about in this article : http://weblogs.asp.net/jeff/archive/2009/07/01/304-your-images-from-a-database.aspx

link|improve this question

76% accept rate
feedback

1 Answer

up vote 6 down vote accepted

Whats wrong with this for 304?

        Response.StatusCode = 304;
        Response.StatusDescription = "Not Modified";
        return Content(String.Empty);

and this for LastModified:

        Response.Cache.SetLastModified(DateTime.Now);

Or maybe just create a 'Not Modified' Filter.

link|improve this answer
too much typing. I am hopeful there is a built way to do that, something like : return NotModified(myResource.LastModified); – THX-1138 Apr 27 '11 at 20:44
1  
more importantly I still need to check and parse "If-Modified-Since" in request, and that's become too complex for me. – THX-1138 Apr 27 '11 at 20:48
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.