When one of my websites is viewed over a mobile 3G network the network operator o2 in this case is rewriting the page and embedding all the styles in-line, this is causing the page to break. As the styles rules are not followed properly.

Now I understand from the guys at o2 that I can stop this happening by adding a Cache Control heading of "no-transform" to my site.

The problem is that adding this via IIS dosn't seam to do anything. and you cant add the cache control "no-transform" via code in .net as its not one of the system.Web.HttpCacheability options.

Any idea how I can get this header in and stop the page being tampered with by the mobile operator.

link|improve this question

feedback

3 Answers

up vote 3 down vote accepted

You should be able to use the Response.AddHeader method, like this:

Response.AddHeader("cache-control", "no-transform");

Verified this with Firebug, and it looks OK.

link|improve this answer
Great works perfectly, still not sure why adding it to the IIS header was just ignored, but never mind. – TheAlbear Dec 13 '10 at 17:48
feedback

Response.Cache.SetNoTransforms in Page_Load

link|improve this answer
feedback

Alternatively, you could add a meta element to your HTML, like so:

<meta http-equiv="Cache-Control" content="no-transform" />
link|improve this answer
Should work, but with some network operators like o2 for example they just ignores it we rewrite your HTML, unless its in the header request. – TheAlbear Jan 10 at 13:55
feedback

Your Answer

 
or
required, but never shown

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