• <label id="pxtpz"><meter id="pxtpz"></meter></label>
      1. <span id="pxtpz"><optgroup id="pxtpz"></optgroup></span>

        當前位置:雨林木風下載站 > 技術開發教程 > 詳細頁面

        將HTML表單數據存儲為XML格式

        將HTML表單數據存儲為XML格式

        更新時間:2022-05-05 文章作者:未知 信息來源:網絡 閱讀次數:

        如你熟知ASP,XML和HTML4。0,請讀下列示例

        將表單數據存為XML格式

          通常的,ASP中表單提交的數據一般被寫入數據庫。然而,如果你想讓發送數據更為簡便易行,那么,可以將它書寫為XML文件格式。這種方式對于在web上收集的數據更為有用。因為XML對于所用平臺來說非常的簡便,所以用不著轉換數據格式。

          將提交的數據寫為XML文檔,則需要通過Microsoft XMLDOM Object創建一個新的XML文檔。Microsoft XMLDOM Object擁有一個可擴展對象庫,通過它可以創建elements,attributes以及values,通過創建的這些項目則可以組成XML文檔。我無法將整個目標模型做個完整的介紹,因為它所包含的內容太廣泛,對于將建成的網站來說,目標模型甚至通過自身也能組建一個相對完整的部份。

          在XMLDOM Object被創建出來之后,通過創建目標(此目標是關于組成XML文檔中每一層的ELEMENTS而言)XML的結構會被演示出來。接下來,會舉例說明XMLDOM是怎樣被創建出來的。創建root element之后,將它附加在XMLDOM文件上。然后創建child elements并附加在root element上,最后存儲文檔。

        演示Microsoft XMLDOM 對象

        <%

        Dim objDom
        Dim objRoot
        Dim objChild1
        Dim objChild2
        Dim objPI

        " XMLDOM 對象使用Server對象的CreateObject方法創建
        Set objDom = Server.CreateObject("Microsoft.XMLDOM")
        "使用XMLDOM的createElemnet方法創建一個IXMLDOMElement對象。
        "createElemnet方法又一個string參數,這個string 表示該element的名稱。
        返回值被傳遞到objRoot變量。objRoot表示XML文檔的根元素.。

        Set objRoot = objDom.createElement("rootElement")

        "Use the appendChild Method of the XMLDOM Object to add the objRoot
        "Element Reference to the XML Document.

        objDom.appendChild objRoot

        "Now, following the same steps, you will create references to the
        "child elements for the XML Document. The only difference is, when the
        "child elements are appended to the document, you will call the
        "appendChild Method of the IXMLDOMElement Object rather than the
        "appendChild Method of the XMLDOM Object. By using the IXMLDOMElement
        "to append the children, you are differentiating (and applying tiered
        "structure to) the child elements from the root element.

        Set objChild1 = objDom.createElement("childElement1")
        objRoot.appendChild objChild1
        Set objChild1 = objDom.createElement("childElement2")
        objRoot.appendChild objChild2

        "The final step to take care of before saving this document is to add
        "an XML processing instruction. This is necessary so that XML parsers
        "will recognize this document as an XML document.

        Set objPI = objDom.createProcessingInstruction("xml","vertsion="1.0"")

        "Call the insertBefore Method of the XMLDOM Object in order to insert
        "the processing instruction before the root element (the zero element
        "in the XMLDOM childNodes Collection).

        objDom.insertBefore objPI, objDom.childNodes(0)

        "Calling the Save Method of the XMLDOM Object will save this XML
        "document to your disk drive. In this case, the document will be saved
        "to the "c:" drive and will be named "MyXMLDoc.xml". When saving an
        "XML document, if the file does not exist, it will be created. If it
        "does exist, it will be overwritten.

        objDom.Save "c:\MyXMLDoc.xml"

        %>

        文檔被存檔之后,如果你再打開這個文檔,那么則會以如下代碼列表形式出現:

        MyXMLDoc.xml:

        <?xml version="1.0"?>
        <rootElement>
        <childElement1 />
        <childElement2 />
        </rootElement>

          在"MyXMLDoc.xml"文檔中,childElement1 和 childElement2 會以空的elements形式出現。如果它們被賦值,那么每個值都將由標記符括起來。

          現在,讓我們來思考一下如何將HTML數據寫到XML文檔中去。我們已經知道該如何創建和存儲XML文檔。將一個表單數據寫到XML文檔中去的過程,現在已演變成為Request Object"s Form Collection以及將每一個表單域的value書定到XML element value 中去的步驟重復。以上可以通過ASP來完成。

        例:將數據輸送到XML

          現在,我們舉一個普通的HTML表單的例子來說明。此Form有用戶名,地址,電話,以及E-MAIL等幾個域。并將這些信息寫入XML文件中并保存。

        EnterContact.html:
        <html>
        <head>
        <title>
        Contact Information
        </title>
        </head>
        <body>
        <form action="processForm.asp" method="post">

        <h3>請輸入你的聯系方式</h3>
        First Name: <input type="text" id="firstName" name="firstName"><br>
        Last Name: <input type="text" id="lastName" name="lastName"><br>
        Address #1: <input type="text" id="address1" name="address1"><br>
        Address #2: <input type="text" id="address2" name="address2"><br>
        Phone Number: <input type="text" id="phone" name="phone"><br>
        E-Mail: <input type="text" id="email" name="email"><br>
        <input type="submit" id="btnSub" name="btnSub" value="Submit"><br>
        </form>
        </body>
        </html>

          將Form 中數據發送到processForm.asp.。這是一個ASP頁面,在這個ASP中將反復調用同一個函數將form數據寫入XML
        文件。


        processForm.asp:
        <%
        '--------------------------------------------------------------------
        'The "ConvertFormtoXML" Function accepts to parameters.
        'strXMLFilePath - The physical path where the XML file will be saved.
        'strFileName - The name of the XML file that will be saved.
        '--------------------------------------------------------------------

        Function ConvertFormtoXML(strXMLFilePath, strFileName)

        'Declare local variables.

        Dim objDom
        Dim objRoot
        Dim objField
        Dim objFieldValue
        Dim objattID
        Dim objattTabOrder
        Dim objPI
        Dim x

        'Instantiate the Microsoft XMLDOM.

        Set objDom = server.CreateObject("Microsoft.XMLDOM")

        objDom.preserveWhiteSpace = True

        'Create your root element and append it to the XML document.

        Set objRoot = objDom.createElement("contact")
        objDom.appendChild objRoot

        'Iterate through the Form Collection of the Request Object.

        For x = 1 To Request.Form.Count

        'Check to see if "btn" is in the name of the form element.
        'If it is, then it is a button and we do not want to add it
        'to the XML document.

        If instr(1,Request.Form.Key(x),"btn") = 0 Then

        'Create an element, "field".

        Set objField = objDom.createElement("field")

        'Create an attribute, "id".

        Set objattID = objDom.createAttribute("id")

        'Set the value of the id attribute equal the the name of

        'the current form field.

        objattID.Text = Request.Form.Key(x)

        'The setAttributeNode method will append the id attribute
        'to the field element.

        objField.setAttributeNode objattID

        'Create another attribute, "taborder". This just orders the
        'elements.

        Set objattTabOrder = objDom.createAttribute("taborder")

        'Set the value of the taborder attribute.

        objattTabOrder.Text = x

        'Append the taborder attribute to the field element.

        objField.setAttributeNode objattTabOrder

        'Create a new element, "field_value".

        Set objFieldValue = objDom.createElement("field_value")

        'Set the value of the field_value element equal to
        'the value of the current field in the Form Collection.

        objFieldValue.Text = Request.Form(x)

        'Append the field element as a child of the root element.

        objRoot.appendChild objField

        'Append the field_value element as a child of the field elemnt.

        objField.appendChild objFieldValue
        End If
        Next

        'Create the xml processing instruction.

        Set objPI=objDom.createProcessingInstruction("xml", "version=""1.0""")



        'Append the processing instruction to the XML document.

        objDom.insertBefore objPI, objDom.childNodes(0)

        'Save the XML document.

        objDom.save strXMLFilePath & "\" & strFileName

        'Release all of your object references.

        Set objDom = Nothing
        Set objRoot = Nothing
        Set objField = Nothing
        Set objFieldValue = Nothing
        Set objattID = Nothing
        Set objattTabOrder = Nothing
        Set objPI = Nothing
        End Function

        'Do not break on an error.

        On Error Resume Next

        'Call the ConvertFormtoXML function, passing in the physical path to
        'save the file to and the name that you wish to use for the file.

        ConvertFormtoXML "c:","Contact.xml"

        'Test to see if an error occurred, if so, let the user know.
        'Otherwise, tell the user that the operation was successful.

        If err.number <> 0 then
        Response.write("Errors occurred while saving your form submission.")
        Else
        Response.write("Your form submission has been saved.")
        End If
        %>

          如果你是在你自己的應用程序中使用以上代碼,請謹記一件事情,在"ConvertFormtoXML"函數已經運行的情況下,如果XML文件名已經存在,那么,文件將會被覆蓋。在此,我建議在使用"ConvertFormtoXML"功能前,最好用隨機建立的文件名。這樣,就將有價值數據被改寫的風險降為零。

          關于XML文件的產生,舉例如下:

        Contact.xml

        <?xml version="1.0" ?>
        <contact>
        <field id="firstName" taborder="1">
        <field_value>Michael</field_value>
        </field>
        <field id="lastName" taborder="2">
        <field_value>Qualls</field_value>
        </field>
        <field id="address1" taborder="3">
        <field_value>2129 NW 27th St.</field_value>
        </field>
        <field id="address2" taborder="4">
        <field_value />
        </field>
        <field id="phone" taborder="5">
        <field_value>4055253988</field_value>
        </field>
        <field id="email" taborder="6">
        <field_value>michaelq@vertiscope.com</field_value>
        </field>
        </contact>

          我在此建議:將以上代碼復制到你個人網站服務器上的同名頁面上,并運行以上示例時。請一定要明確你使用的是對你個人服務器有效的路徑和文件名。

          當你一切準備好時,請再次檢驗你的XML文件。

        溫馨提示:喜歡本站的話,請收藏一下本站!

        本類教程下載

        系統下載排行

        主站蜘蛛池模板: 亚洲AV成人片色在线观看高潮| 浮力影院第一页小视频国产在线观看免费| 亚洲精品国产自在久久| 免费一级特黄特色大片| 亚洲日产乱码一二三区别| 国产卡二卡三卡四卡免费网址| 久久精品蜜芽亚洲国产AV| 亚洲成人免费网站| 亚洲中文字幕无码一去台湾| 久久成人永久免费播放| 国产亚洲人成网站观看| 热re99久久6国产精品免费| 亚洲国产成人久久精品app| 99久久综合国产精品免费| 亚洲精品久久久久无码AV片软件| 在线观着免费观看国产黄| 一个人看的免费观看日本视频www 一个人看的免费视频www在线高清动漫 | 亚洲精品国产第一综合99久久 | 一个人看的www在线观看免费| 亚洲日韩AV一区二区三区四区| 国产又长又粗又爽免费视频| 亚洲黄色免费网址| 国产一卡2卡3卡4卡无卡免费视频| 亚洲人成色777777老人头| 亚洲精品高清在线| 久久国产色AV免费观看| 亚洲日韩AV一区二区三区中文| 亚洲精品视频免费观看| 久草福利资源网站免费| 亚洲AV无码资源在线观看| 在线观看国产区亚洲一区成人| 97在线视频免费播放| 在线观看亚洲电影| 亚洲国产精品国自产电影| 精品国产麻豆免费网站| 成人精品视频99在线观看免费| 亚洲va成无码人在线观看| 亚洲国产精品自产在线播放| 69av免费视频| 黄色网址免费在线观看| 国产精品亚洲一区二区麻豆|