天天看點

xml資料島中添加記錄

在新公司研究CRM項目用到了此。。。故此添加這方面的資料 很實用

<HTML>

  <HEAD><Title>HTML中的資料島中的記錄集</Title></HEAD>

  <body bkcolor=#EEEEEE text=blue bgcolor="#00FFFF">

  <Table align=center width="100%"><TR><TD align="center">

  <h5><b><font size="4" color="#FF0000">HTML中的XML資料島記錄編輯與添加    </font></b></h5>

  </TD></TR></Table>

  <HR>

  酒店名稱:<input type=text datasrc=#theXMLisland DataFLD=NAME size="76"><BR>

  位址:<input type=text datasrc=#theXMLisland DataFLD=Address size="76"><BR>

  首頁:<input type=text datasrc=#theXMLisland DataFLD=HomePage size="76"><BR>

  電子郵件:<input type=text datasrc=#theXMLisland DataFLD=E-Mail size="76"><BR>

  電話:<input type=text datasrc=#theXMLisland DataFLD=TelePhone size="76"><BR>

  級别:<input type=text datasrc=#theXMLisland DataFLD=Grade size="76"><HR>

  <input id="first" TYPE=button value="<< 第一條記錄"     οnclick="theXMLisland.recordset.moveFirst()">

  <input id="prev" TYPE=button value="<上一條記錄"   οnclick="theXMLisland.recordset.movePrevious()"> 

  <input id="next" TYPE=button value="下一條記錄>" οnclick="theXMLisland.recordset.moveNext()"> 

  <input id="last" TYPE=button value="最後一條記錄>>" οnclick="theXMLisland.recordset.moveLast()">&nbsp; 

  <input id="Add" TYPE=button value="添加新記錄" οnclick="theXMLisland.recordset.addNew()"> 

  <XML ID="theXMLisland">

  <HotelList>

  <Hotel>

  <Name>四海大酒店</Name>

  <Address>海魂路1号</Address>

  <HomePage>www.sihaohotel.com.cn</HomePage>

  <E-Mail>[email protected]</E-Mail>

  <TelePhone>(0989)8888888</TelePhone>

  <Grade>五星級</Grade>

  </Hotel>

  <Hotel>

  <Name>五湖飯店</Name>

  <Address>東平路99号</Address>

  <HomePage>www.wuhu.com.cn</HomePage>

  <E-Mail>[email protected]</E-Mail>

  <TelePhone>(0979)1111666</TelePhone>

  <Grade>四星級</Grade>

  </Hotel>

  <Hotel>

  <Name>“大沙漠”飯店</Name>

  <Address>留香路168号</Address>

  <HomePage>www.dashamohotel.com.cn</HomePage>

  <E-Mail>[email protected]</E-Mail>

  <TelePhone>(0989)87878788</TelePhone>

  <Grade>五星級</Grade>

  </Hotel>

  <Hotel>

  <Name>“畫眉鳥”大酒店</Name>

  <Address>血海飄香路2号</Address>

  <HomePage>www.throstlehotel.com.cn</HomePage>

  <E-Mail>[email protected]</E-Mail>

  <TelePhone>(099)9886666</TelePhone>

  <Grade>五星級</Grade>

  </Hotel>

  </HotelList>

  </XML>

  </body> 

  </HTML> //xml資料島中添加記錄