up vote 1 down vote favorite
share [g+] share [fb]

I've used xml type by writing (asp coding)

Response.ContentType = "text/xml"

Now xml contents are over and I'd like to add html content so I wrote

Response.ContentType = "text/html"

But it still writing in xml what would be the problem here?

link|improve this question

79% accept rate
feedback

2 Answers

up vote 2 down vote accepted

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.

If you want to get two files with different content types, you'll have to call them separately.

link|improve this answer
so should I make another ajax call? – Vikas Jul 4 '09 at 5:43
Yes, you need to make another ajax call, or however the page is being downloaded. – Matthew Scharley Jul 4 '09 at 5:47
feedback

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.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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