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?

link|improve this question

68% accept rate
You know that the string "is being created" when the server does not throw a syntax error message at you when you run the page… So I'm not sure what this means? – Tomalak May 17 '10 at 15:43
feedback

1 Answer

up vote 1 down vote accepted
Response.Write(Server.HtmlEncode(tXML));

Or "view source" in the browser...

link|improve this answer
Thanks. That just solved a lot of my problems. – Primetime May 17 '10 at 17:21
feedback

Your Answer

 
or
required, but never shown

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