我设法终于让一切工作......
如果我点击提交..然后以xml格式创建一个文件,但是如果我输入新数据,它将覆盖同一个文件,我该如何阻止它..
这是我正在使用的代码
Protected Sub btnWriteXML_onClick(ByVal sender As Object, ByVal e As System.EventArgs)
Try
Dim enc As Encoding
Dim objXMLTW As New XmlTextWriter(Server.MapPath("contact.xml"), enc)
objXMLTW.WriteStartDocument()
objXMLTW.WriteStartElement("Feedback Form")
如何阻止覆盖?
答案 0 :(得分:1)
您需要使文件名唯一。也许添加时间戳或guid或编写逻辑来在文件名上添加序号?