I am developing a MVC application that is accessed by mobile browsers.
Unfortunately, .Net has a tendency to change the content-type from text/html to text/vnd.wap.wml for several older mobile phones.
I know I can create an ActionFilter that overrides this behaviour and forces content-tpe text/html, or I can include the Content-Type in the <%@ Page ... %> directive.
But is there an easier way to stop .Net from changing content-type?