Question

I have:

tXML = "<type p_type=\"All\"/>";

if I do

Response.Write(tXML);

I get a blank space.

Is there anyway to output this string so I know it is being created?

Was it helpful?

Solution

Response.Write(Server.HtmlEncode(tXML));

Or "view source" in the browser...

Licensed under: CC-BY-SA with attribution
Not affiliated with StackOverflow
scroll top