以下是将xml文件放置到特定目标的代码。
[WebMethod]
[ScriptMethod(ResponseFormat = ResponseFormat.Xml)]
public XmlDataDocument GetList(string keyword1, string streetname, string lat, string lng, string radius)
{
XmlDataDocument xmlDoc= CreateXML( keyword1,streetname,lat,lng,radius);
xmlDoc.Save(@"D:\blockseek7-9-2010\Block3.xml");
return xmlDoc;
// can i save it to outputstream or buffer
}
答案 0 :(得分:2)
xmlDoc.Save的第一个重载需要一个流