1

我正在用 c# 和 asp.net 在 Visual Web Developer 2010 上制作一个项目,我想将创建的唯一命名的 xml 文件保存到主文件夹中存在的 xml 文件夹中。此刻,xml 文件(从 web 表单中的用户输入生成)保存到主文件夹中,我似乎无法让它们保存到 xml 文件夹中。

string xmlPath = MapPath(timeStamp + Company_Name.Text + ".xml");
//There's just some code here setting up the xml nodes.
doc.Save(xmlPath);
4

1 回答 1

1
string xmlPath =MapPath("~/xml/" + timeStamp + Company_Name.Text + ".xml");
//There's just some code here setting up the xml nodes.
doc.Save(xmlPath);
于 2013-04-24T14:45:37.980 回答