tags:

views:

18

answers:

1

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?

+1  A: 
Response.Write(Server.HtmlEncode(tXML));

Or "view source" in the browser...

Tomalak
Thanks. That just solved a lot of my problems.
Primetime