HTML中的XML数据岛记录编辑与添加

 1<html>
 2<head><title>HTML中的数据岛中的记录集</title></head>
 3<body bgcolor="#00FFFF" bkcolor="#EEEEEE" text="blue">
 4<table align="center" width="100%"><tr><td align="center">
 5<h5><b><font color="#FF0000" size="4">HTML中的XML数据岛记录编辑与添加</font></b></h5>
 6</td></tr></table>
 7<hr/>   
 8酒店名称:<input datafld="NAME" datasrc="#theXMLisland" size="76" type="text"/><br/>   
 9地址:<input datafld="Address" datasrc="#theXMLisland" size="76" type="text"/><br/>   
10主页:<input datafld="HomePage" datasrc="#theXMLisland" size="76" type="text"/><br/>   
11电子邮件:<input datafld="E-Mail" datasrc="#theXMLisland" size="76" type="text"/><br/>   
12电话:<input datafld="TelePhone" datasrc="#theXMLisland" size="76" type="text"/><br/>   
13级别:<input datafld="Grade" datasrc="#theXMLisland" size="76" type="text"/><hr/>
14<input id="first" onclick="theXMLisland.recordset.moveFirst()" type="button" value="&lt;&lt; 第一条记录"/>
15<input id="prev" onclick="theXMLisland.recordset.movePrevious()" type="button" value="&lt;上一条记录"/>
16<input id="next" onclick="theXMLisland.recordset.moveNext()" type="button" value="下一条记录&gt;"/>
17<input id="last" onclick="theXMLisland.recordset.moveLast()" type="button" value="最后一条记录&gt;&gt;"/>    
18<input id="Add" onclick="theXMLisland.recordset.addNew()" type="button" value="添加新记录"/>
19<xml id="theXMLisland">
20<hotellist>
21<hotel>
22<name>四海大酒店</name>
23<address>海魂路1号</address>
24<homepage>www.sihaohotel.com.cn</homepage>
25<e-mail>[email protected]</e-mail>
26<telephone>(0989)8888888</telephone>
27<grade>五星级</grade>
28</hotel>
29<hotel>
30<name>五湖宾馆</name>
31<address>东平路99号</address>
32<homepage>www.wuhu.com.cn</homepage>
33<e-mail>[email protected]</e-mail>
34<telephone>(0979)1111666</telephone>
35<grade>四星级</grade>
36</hotel>
37<hotel>
38<name>“大沙漠”宾馆</name>
39<address>留香路168号</address>
40<homepage>www.dashamohotel.com.cn</homepage>
41<e-mail>[email protected]</e-mail>
42<telephone>(0989)87878788</telephone>
43<grade>五星级</grade>
44</hotel>
45<hotel>
46<name>“画眉鸟”大酒店</name>
47<address>血海飘香路2号</address>
48<homepage>www.throstlehotel.com.cn</homepage>
49<e-mail>[email protected]</e-mail>
50<telephone>(099)9886666</telephone>
51<grade>五星级</grade>
52</hotel>
53</hotellist>
54</xml>
55</body>
56</html>
Published At
Categories with Web编程
Tagged with
comments powered by Disqus