>>>可以写成xml文件吗?yes, that is what CSDN is doing>>>>在提交页面上又如何读取数据,如何找到xml文件中的每个节点,能写一个最简单的代码吗?多谢多谢how the data is submitted? load them into a dom object, for example, if you are posting an xml file, you could doset xmldoc = Server.CreateObject("MSXML2.DOMDOCUMENT")
xmldoc.Load(Request)set node = xmldoc.SelectSingleNode("//somenode")
....see
http://msdn.microsoft.com/library/default.asp?url=/library/en-us/xmlsdk30/htm/xmconloadingandsavingxml.asp