Introduction to ASP + XML message board

Source: Internet
Author: User

When I started learning xml, I made a simple xml message board.

-------------------------------

Create a new XMLDOM object
Server. createObject ("Microsoft. XMLDOM ")

--------------------------------

Load an xml file
Set objXML = server. createObject ("Microsoft. XMLDOM ")
Filepath = server. mappath ("list. xml ")
ObjXML. load (filepath)

You cannot directly load ("list. xml") Here, or an error will occur.

--------------------------------

Find a Single Node
Set objXML = server. createObject ("Microsoft. XMLDOM ")
DestNode = objXML. selectSingleNode ("NewList ")

This singlenode cannot be "root"

--------------------------------

Save the xml file
Set objXML = server. createObject ("Microsoft. XMLDOM ")
Filepath = server. mappath ("list. xml ")
ObjXML. save (filepath)

--------------------------------

Add an xml Node
XmlNode = "......"
Set objXML = server. createObject ("Microsoft. XMLDOM ")
ObjXML. loadXML (xmlNode)
Newnode1_objxml.doc umentElement
MyXML. appendChild (newNode)

--------------------------------

Item Parameters
MyXML. childNodes. item (2). text
Point to a specific Node when multiple childNodes exist.

Demo address: http://www.xunuo.net/other/code/index.asp

: Http://www.xunuo.net/other/code/leave.rar

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.