点击新闻"添加"按钮提示 路径不是合法的形式。 请各位朋友忙我看看问题出在哪!
点击新闻"添加"按钮 提示路径不是合法的形式。更新、编辑、删除功能都是正常的.// 添加新条目
private void Button2_Click(object sender, System.EventArgs e)
{
if(this.IsValid)
{
try
{
string title=this.txtTitle2.Text;
string content=this.txtContent2.Text;
//
xmlPath=Server.MapPath("./")+MyXml.strXmlPath+"news.xml";
myxml=new MyXml(xmlPath);
XmlDocument xDoc=myxml.LoadXmlDoc();
XmlNode xRoot,xNode;
xRoot=xDoc.GetElementsByTagName("informations")[0];
//
XmlAttribute Attri,id,time;//节点属性
id=xDoc.CreateAttribute("id");
Attri=xDoc.CreateAttribute("title");
time=xDoc.CreateAttribute("time");
Attri.Value=title;
id.Value=xDoc.SelectNodes("//information").Count.ToString();
time.Value=DateTime.Now.ToString();
xNode=xDoc.CreateElement("information");
xNode.InnerText="\n"+content+"\n";
xNode.Attributes.Append(id);
xNode.Attributes.Append(Attri);
xNode.Attributes.Append(time);
xRoot.AppendChild(xNode);
xDoc.Save(myxml.URL);
//
Page.RegisterStartupScript("refresh","<script>alert(\"提交成功!\");location.href=\"information.aspx\";</script>");
}
catch(System.Xml.XmlException ex)
{
throw new Exception(ex.Message);
}
}
} --------------------编程问答-------------------- 还是检查下文件路径问题吧
补充:.NET技术 , C#