新学c#一月 遇到点简单问题
var objXmlHttp = new ActiveXObject("Microsoft.XMLHTTP");
var strURL = "../search/NodeOpen.aspx?NodeId="+NodeId+"&"+Math.random();
objXmlHttp.open("GET", strURL, false);
try 
{
   objXmlHttp.send();
   var objXmlDoc = objXmlHttp.responseXML;

以上是客户端发送请求string strTreeXmlInfo = this.GetTreeXmlInfo(ParentId);this.Response.ContentType = "text/xml";
this.Response.CacheControl = "Private";
this.Response.Charset = "gbk";string xmlstr = "<?xml version='1.0' ?><AllInfo>"+strTreeXmlInfo+"</AllInfo>";
XmlDocument objXmlDoc = new XmlDocument();
objXmlDoc.LoadXml(xmlstr);objXmlDoc.Save(???);这是服务端的生成XML ???这里就是我的问题,这里的类型是string,以前ASP用时是保存到response里的,这里该怎么写?