Tagged Questions
10
votes
1answer
484 views
Setting optimum http caching headers and server params in ASP.Net MVC and IIS 7.5
I have an ASP.Net site (happens to be MVC, but that's not relevant here) with a few pages I'd like cached really well.
Specifically I'd like to achieve:
output cached on the server for 2 hours.
if ...
10
votes
3answers
3k views
How to specify HTTP expiration header? (ASP.NET MVC+IIS)
I am already using output caching in my ASP.NET MVC application.
Page speed tells me to specify HTTP cache expiration for css and images in the response header.
I know that the Response object ...
9
votes
3answers
483 views
How to remove ASP.Net MVC Default HTTP Headers?
Each page in an MVC application I'm working with sets these HTTP headers in requests:
X-Powered-By: ASP.NET
X-AspNet-Version: 2.0.50727
X-AspNetMvc-Version: 2.0
How do I prevent these from showing? ...
7
votes
5answers
5k views
What is the correct response to an HTTP POST request?
For a POST method, the W3 specs say:
If a resource has been created on the origin server, the response
SHOULD be 201 (Created) and contain an entity which describes the
status of the ...
5
votes
2answers
63 views
Why/how do browsers know to cache content (html,css,js,etc) when not explicitly instructed to do so
I was looking at Chirpy for css/js minifying,compression, etc.
I noticed it doesn't support caching. It doesn't have any logic for sending expires headers, etags, etc.
The absence of this feature ...
5
votes
3answers
3k views
Supporting the “Expect: 100-continue” header with ASP.NET MVC
I'm implementing a REST API using ASP.NET MVC, and a little stumbling block has come up in the form of the Expect: 100-continue request header for requests with a post body.
RFC 2616 states that:
...
4
votes
3answers
555 views
Why does firefox round-trip to the server to determine whether my files are modifed?
I have some static content on my web site that I have set up caching for (using Asp.NET MVC). According to Firebug, the first time I open the page, Firefox sends this request:
GET ...
3
votes
1answer
1k views
ASP.NET MVC: OutputCache and http headers
I have just started using OutputCache on some of my controller actions and I am not quite getting the response I would expect.
I have set the cache time to 5 minutes and the Expires header is coming ...
3
votes
7answers
2k views
Is it possible to implement X-HTTP-Method-Override in ASP.NET MVC?
I'm implementing a prototype of a RESTful API using ASP.NET MVC and apart from the odd bug here and there I've achieve all the requirements I set out at the start, apart from callers being able to use ...
2
votes
4answers
412 views
ASP.NET MVC - append GET value to every URL… ActionLink? Routing? How?
I'm after an elegant way to append a token to each URL in an ASP.NET MVC application. eg:
http://mysite.com/?token=81541858
From any given page, when a link is generated (eg through ...
2
votes
2answers
3k views
How to modify request headers in c#,ASP .NET
I am working on a ASP .NET mVC project & i have to change HttpHeaders. see the foolowing code snippet:
WebRequest req= HttpWebRequest.Create("myURL");
HttpWebResponse response = ...
2
votes
3answers
368 views
Selectively cache .js and .png files over https?
We are creating a large secure back office web application in ASP.NET. All access to the site is over https connections, and we'd like to either turn off caching for pages or set caches to expire ...
2
votes
1answer
2k views
ASP.NET MVC: OutputCache and http headers - Cache-Control
I have just started using OutputCache on some of my controller actions and I am not quite getting the response I would expect.
Basically I have set Location = OutputCacheLocation.Any and the http ...
1
vote
2answers
78 views
response header set in action disappears in view - asp net mvc
In a controller action, response header is set like this:
HttpContext.Response.AddHeader("key", "value");
In rendered view, Response.Headers["key"] seems to be null (btw in ajax requests, header is ...
1
vote
1answer
242 views
how to open filecontentresult without window prompt in any browser
I have filecontentresult from controller action method as shown ,contents is byte[] type
FileContentResult file= new FileContentResult(contents, "/PDF");
...
1
vote
1answer
181 views
should all asp.net-mvc sites set the Content and Scripts directory with far in the future expiry headers in IIS?
based on what i have read, it would be correct behavior to ALWAYS set future header expiry to the Content and Scripts directory for any ASP.NET-mvc page given that it is static content.
Is there any ...
1
vote
1answer
130 views
I'd like to add a header to the 500 Internal Server Error page
I'm using ASP.NET MVC, and my application works mostly using JSON queries.
If something goes wrong on the server-side, I get the standard "500 Internal Server Error" page. That's actually fine. But ...
1
vote
2answers
358 views
Get header values in ASP.NET MVC
I have a requirement to capture the HTTP User Agent header coming in from a device, take the value and remove a 'uuid' This UUID can then be used to direct the device to the correct location to give ...
1
vote
6answers
470 views
Getting a Request.Headers value
Very simple I'm sure, but driving me up the wall! There is a component that I use in my web application that identifies itself during a web request by adding the header "XYZComponent=true" - the ...
1
vote
0answers
639 views
Set “Last-Modified” Header to “Date-Modified” of File in ASP.NET MVC?
I am trying to figure out how to optimize getting the "Date modified" to use in the last-modified header in ASP.NET MVC.
I don't want to check the date of each request as this seems loss of ...
1
vote
1answer
219 views
Setting the Content Type of a ViewResult
I am trying to create an ActionResult that behaves in exactly the same manner as a ViewResult but allows me to specify the Content-Type header. This is difficult because from what I can tell ASP.Net ...
1
vote
0answers
163 views
Bug in: System.Web.UI.Page.InitOutputCache() or in System.Web.Mvc?
I'm using asp.net MVC with output caching (the OutputCache attribute) on some of my controller methods and am getting some really weird results in the HTTP headers.
When I add the attribute to the ...
0
votes
1answer
93 views
Add expire header to image from database
Does anybody know if it possible to cache the image from the database?
I know that there is an OutputCache attribute for above the Action. You then could set the VaryByParam to the id of the image in ...
0
votes
1answer
118 views
Exception thrown in end_request when adding headers
Occasoinally i get this exception thrown (viewable in elmah)
System.Web.HttpException:
Server cannot append header after HTTP headers have been sent.
System.Reflection.TargetInvocationException: ...
0
votes
1answer
113 views
how to append filename.pdf to url to browser
My controller action method returns pdf file as
public FileContentResult GetPDF(string filename)
{FileContentResult filecontent= new FileContentResult(Contents, "application/pdf");
...
0
votes
1answer
173 views
application/pdf object opening in adobe reader but not in firefox browser tab asp.net mvc
I have my controller action method returning pdf file as
public FileContentResult GetPDF(string filename)
{FileContentResult filecontent= new FileContentResult(Contents, "application/pdf");
...
0
votes
3answers
205 views
Why do my ETag headers work under IIS but not under the VS2010 web server?
In my ASP.NET MVC 2 app, I have the following lines:
Response.Cache.SetMaxAge(TimeSpan.FromDays(90));
Response.Cache.SetETag(lastWriteTime.Value.Ticks.ToString());
Using Fiddler to trace the HTTP ...
0
votes
1answer
228 views
Why can't I Response.Cache.SetLastModified in ASP.NET MVC 2 (and what is a “caching restrictiveness hierarchy” ?)
Trying to set cache response headers on a dynamically-generated image, I'm getting a weird error:
ArgumentOutOfRangeException was unhandled by user code
Specified argument was out of the ...
0
votes
1answer
36 views
Forwarding requests for relocated static content
I have a bunch of static content on a site that has always lived in the root directory like http://mysite.com/smiley.gif. I want to move it all to a subdirectory http://mysite.com/images/smiley.gif.
...
0
votes
1answer
155 views
ASP.NET MVC refresh header issue
I want to call an action method (DownloadPictures) after i redirect to a different page, so i use the refresh header
UrlHelper url = new UrlHelper(Request.RequestContext);
...
0
votes
1answer
171 views
Can't call HttpResponse.StatusCode to set HTTP Status Code
I have the following function:
private ViewResult HandleInvalid()
{
Response.StatusCode = (int)HttpStatusCode.NotFound;
return View("Invalid");
}
On development machine (Windows 7), ...
0
votes
1answer
488 views
ASP.net AppendHeader not working in ASP MVC
I'm having problems getting AppendHeader to work properly if I am also using an authorize filter. I'm using an actionfilter for my AJAX actions that applies Expires, Last-Modified, Cache-Control and ...
0
votes
1answer
281 views
how to set httpheaders in asp.net mvc
I need to set http header for disabling ie (7-8) caching (it disturbs my ajax functionallity).
I've tried inserting this code to the head of my site.master with no result -
<META ...