Change Response type in asp - Stack Overflow most recent 30 from stackoverflow.com 2009-12-16T09:13:47Z http://stackoverflow.com/feeds/question/1081589 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1081589/change-response-type-in-asp 1 Change Response type in asp Vikas 2009-07-04T05:38:26Z 2009-07-08T06:32:31Z <p>Hello,</p> <p>I've used xml type by writing (asp coding)</p> <pre><code>Response.ContentType = "text/xml" </code></pre> <p>Now xml contents are over and I'd like to add html content so I wrote </p> <pre><code>Response.ContentType = "text/html" </code></pre> <p>But it still writing in xml what would be the problem here?</p> http://stackoverflow.com/questions/1081589/change-response-type-in-asp/1081593#1081593 2 Answer by splattne for Change Response type in asp splattne 2009-07-04T05:41:27Z 2009-07-04T10:26:43Z <p>I'm not sure what you mean. There can only be one ContentType per response. The browser will interpret the whole content of the response as xml.</p> <p>If you want to get two files with different content types, you'll have to call them separately.</p> http://stackoverflow.com/questions/1081589/change-response-type-in-asp/1081602#1081602 0 Answer by Cerebrus for Change Response type in asp Cerebrus 2009-07-04T05:47:21Z 2009-07-04T05:47:21Z <p>As @splattne already stated, a single Response from the server can have only a single content-type. You cannot have separate types unless you initiate a second request from the client (and have a way of determining that this request requires a different accept type). A better way is to send the second request to a different function/resource.</p>