tags:

views:

253

answers:

2

I recently moved a web application to a new server and every response.redirect ends up just showing the CDATA to the browser. The form did post back, the changes were made, but the browser doesn't end up loading the new page, just shows the CDATA.

Any ideas?

+1  A: 

An HTTP redirect from asp.net is usually made using the HTTP header rather than any HTML output. Have you tried interogating the HTTP header to determine what is being returned?

Tools such as the following can help:
http://web-sniffer.net/

CDATA is an XML element, and as such I would not expect this as a sole output from the server. Could you try pasting the full output here for us to take a look at?

Ady
A: 

Yeah, that's what got me confused... For instance, this is the sole response: It happens in ALL browsers as well...