狠狠色丁香婷婷综合尤物/久久精品综合一区二区三区/中国有色金属学报/国产日韩欧美在线观看 - 国产一区二区三区四区五区tv

LOGO OA教程 ERP教程 模切知識(shí)交流 PMS教程 CRM教程 開發(fā)文檔 其他文檔  
 
網(wǎng)站管理員
Please input your contact infomation here: 
 
 
 
 
 
 
 
 

ASP基礎(chǔ):將HTML表單數(shù)據(jù)存儲(chǔ)為XML格式

admin
2010年8月19日 23:13 本文熱度 3611
如你熟知ASP,XML和HTML4。0,請(qǐng)讀下列示例
將表單數(shù)據(jù)存為XML格式
  通常的,ASP中表單提交的數(shù)據(jù)一般被寫入數(shù)據(jù)庫(kù)。然而,如果你想讓發(fā)送數(shù)據(jù)更為簡(jiǎn)便易行,那么,可以將它書寫為XML文件格式。這種方式對(duì)于在web上收集的數(shù)據(jù)更為有用。因?yàn)閄ML對(duì)于所用平臺(tái)來(lái)說(shuō)非常的簡(jiǎn)便,所以用不著轉(zhuǎn)換數(shù)據(jù)格式。
  將提交的數(shù)據(jù)寫為XML文檔,則需要通過(guò)Microsoft XMLDOM Object創(chuàng)建一個(gè)新的XML文檔。Microsoft XMLDOM Object擁有一個(gè)可擴(kuò)展對(duì)象庫(kù),通過(guò)它可以創(chuàng)建elements,attributes以及values,通過(guò)創(chuàng)建的這些項(xiàng)目則可以組成XML文檔。我無(wú)法將整個(gè)目標(biāo)模型做個(gè)完整的介紹,因?yàn)樗膬?nèi)容太廣泛,對(duì)于將建成的網(wǎng)站來(lái)說(shuō),目標(biāo)模型甚至通過(guò)自身也能組建一個(gè)相對(duì)完整的部份。
  在XMLDOM Object被創(chuàng)建出來(lái)之后,通過(guò)創(chuàng)建目標(biāo)(此目標(biāo)是關(guān)于組成XML文檔中每一層的ELEMENTS而言)XML的結(jié)構(gòu)會(huì)被演示出來(lái)。接下來(lái),會(huì)舉例說(shuō)明XMLDOM是怎樣被創(chuàng)建出來(lái)的。創(chuàng)建root element之后,將它附加在XMLDOM文件上。然后創(chuàng)建child elements并附加在root element上,最后存儲(chǔ)文檔。

演示Microsoft XMLDOM 對(duì)象 

<% 
Dim objDom 
Dim objRoot 
Dim objChild1 
Dim objChild2 
Dim objPI 
 
" XMLDOM 對(duì)象使用Server對(duì)象的CreateObject方法創(chuàng)建 
Set objDom = Server.CreateObject("Microsoft.XMLDOM") 
"使用XMLDOM的createElemnet方法創(chuàng)建一個(gè)IXMLDOMElement對(duì)象。 
"createElemnet方法又一個(gè)string參數(shù),這個(gè)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" 
 
%> 

文檔被存檔之后,如果你再打開這個(gè)文檔,那么則會(huì)以如下代碼列表形式出現(xiàn): 

MyXMLDoc.xml: 


 
 
 
 
 

  在"MyXMLDoc.xml"文檔中,childElement1 和 childElement2 會(huì)以空的elements形式出現(xiàn)。如果它們被賦值,那么每個(gè)值都將由標(biāo)記符括起來(lái)。 
  現(xiàn)在,讓我們來(lái)思考一下如何將HTML數(shù)據(jù)寫到XML文檔中去。我們已經(jīng)知道該如何創(chuàng)建和存儲(chǔ)XML文檔。將一個(gè)表單數(shù)據(jù)寫到XML文檔中去的過(guò)程,現(xiàn)在已演變成為Request Object"s Form Collection以及將每一個(gè)表單域的value書定到XML element value 中去的步驟重復(fù)。以上可以通過(guò)ASP來(lái)完成。
例:將數(shù)據(jù)輸送到XML
  現(xiàn)在,我們舉一個(gè)普通的HTML表單的例子來(lái)說(shuō)明。此Form有用戶名,地址,電話,以及E-MAIL等幾個(gè)域。并將這些信息寫入XML文件中并保存。 

EnterContact.html: 

 
 
  <BR>Contact Information  <BR> 
 
 
 
 
First Name:
Last Name: 
Address #1: 
Address #2: 
Phone Number: 
E-Mail: 
 
 
 

  將Form 中數(shù)據(jù)發(fā)送到ProcessForm.asp.。這是一個(gè)ASP頁(yè)面,在這個(gè)ASP中將反復(fù)調(diào)用同一個(gè)函數(shù)將form數(shù)據(jù)寫入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("FieldValue") 
            ’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 "F:\Asp\","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.
Go Back") 
End If 
%> 

  如果你是在你自己的應(yīng)用程序中使用以上代碼,請(qǐng)謹(jǐn)記一件事情,在"ConvertFormtoXML"函數(shù)已經(jīng)運(yùn)行的情況下,如果XML文件名已經(jīng)存在,那么,文件將會(huì)被覆蓋。在此,我建議在使用"ConvertFormtoXML"功能前,最好用隨機(jī)建立的文件名。這樣,就將有價(jià)值數(shù)據(jù)被改寫的風(fēng)險(xiǎn)降為零。 
  關(guān)于XML文件的產(chǎn)生,舉例如下:

Contact.xml: 

 
 
 
     
        Dicky 
     
     
        Gu 
     
     
        ShangHai 
     
     
        BeiJing 
     
     
        123456 
     
     
        AppleBBS@GMail.Com 
     
 

  我在此建議:將以上代碼復(fù)制到你個(gè)人網(wǎng)站服務(wù)器上的同名頁(yè)面上,并運(yùn)行以上示例時(shí)。請(qǐng)一定要明確你使用的是對(duì)你個(gè)人服務(wù)器有效的路徑和文件名。 
  當(dāng)你一切準(zhǔn)備好時(shí),請(qǐng)?jiān)俅螜z驗(yàn)?zāi)愕腦ML文件。

該文章在 2010/8/19 23:13:56 編輯過(guò)
關(guān)鍵字查詢
相關(guān)文章
正在查詢...
點(diǎn)晴ERP是一款針對(duì)中小制造業(yè)的專業(yè)生產(chǎn)管理軟件系統(tǒng),系統(tǒng)成熟度和易用性得到了國(guó)內(nèi)大量中小企業(yè)的青睞。
點(diǎn)晴PMS碼頭管理系統(tǒng)主要針對(duì)港口碼頭集裝箱與散貨日常運(yùn)作、調(diào)度、堆場(chǎng)、車隊(duì)、財(cái)務(wù)費(fèi)用、相關(guān)報(bào)表等業(yè)務(wù)管理,結(jié)合碼頭的業(yè)務(wù)特點(diǎn),圍繞調(diào)度、堆場(chǎng)作業(yè)而開發(fā)的。集技術(shù)的先進(jìn)性、管理的有效性于一體,是物流碼頭及其他港口類企業(yè)的高效ERP管理信息系統(tǒng)。
點(diǎn)晴WMS倉(cāng)儲(chǔ)管理系統(tǒng)提供了貨物產(chǎn)品管理,銷售管理,采購(gòu)管理,倉(cāng)儲(chǔ)管理,倉(cāng)庫(kù)管理,保質(zhì)期管理,貨位管理,庫(kù)位管理,生產(chǎn)管理,WMS管理系統(tǒng),標(biāo)簽打印,條形碼,二維碼管理,批號(hào)管理軟件。
點(diǎn)晴免費(fèi)OA是一款軟件和通用服務(wù)都免費(fèi),不限功能、不限時(shí)間、不限用戶的免費(fèi)OA協(xié)同辦公管理系統(tǒng)。
Copyright 2010-2025 ClickSun All Rights Reserved