Change Response type in asp - Stack Overflow most recent 30 from stackoverflow.com2009-12-16T09:13:47Zhttp://stackoverflow.com/feeds/question/1081589http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1081589/change-response-type-in-asp1Change Response type in aspVikas2009-07-04T05:38:26Z2009-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#10815932Answer by splattne for Change Response type in aspsplattne2009-07-04T05:41:27Z2009-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#10816020Answer by Cerebrus for Change Response type in aspCerebrus2009-07-04T05:47:21Z2009-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>