XML Content
-
Hi, I am trying to grab XML contents using ASP.Net page . But i think i am not getting all the contents of XML but only half. I am using this code. Response.ContentType = "text/xml"; Response.BufferOutput = true; //Reads the request and load the string StreamReader reader = new StreamReader(Request.InputStream); StrDS = reader.ReadToEnd(); reader.Close(); Then i am putting into one XML file. But any body can guide whteher i am doing right or wrong here. According to specs of the server i should get the more contents. Then i need to send some response to server like tag. I am sending it but i don't want it to display on the Internet page. Becasue i am displaying some usefull data on it. Code i am using is. Response.ContentType = "text/xml"; Response.Write("<ErrorList><Success>WEBAPP.dll/XMLPost</Success></ErrorList>"); Response.End(); But this text is always displayed. Can anu body tell me how to send the response without displaying it on IE page Thanks Shailesh