当前位置: 首页 > 网络学院 > XML相关教程 > XML > XML 服务器
XML can be generated on a server without installing any XML controls.
无须安装任何XML控件就可以在服务器上生成XML文件。
XML files can be stored on an Internet server exactly the same way as HTML files.
XML文件在Internet 服务器上的储存方式与HTML文件完全相同。
Start Windows Notepad and write the following lines:
打开Windows 记事本,并书写下面的代码:
<?xml version="1.0" encoding="ISO-8859-1"?> |
Save the file on your web server with a proper name like "note.xml".
给文件起个恰当的名字(如:note.xml),并将其保存在网络服务器上。
XML can be generated on a server without any installed XML software.
无须安装任何XML软件就可以在服务器上生成XML。
To generate an XML response from the server - simply write the following code and save it as an ASP file on the web server:
为了在服务器端产生一个XML响应——只须简单写下如下的代码,并在网络服务器上把它保存为一份ASP文件
<% |
Note that the content type of the response must be set to "text/xml".
注意回复的内容类型必须设置为"text/xml"。
See how the ASP file will be returned from the server.
看看从服务器返回的ASP文件里有些什么.
If you don't know how to write ASP, please visit our ASP tutorial
如果你不知道怎么写ASP,可以访问我们的 ASP教程
XML can be generated from a database without any installed XML software.
没有安装任何XML软件就可以从数据库中产生XML。
To generate an XML database response from the server, simply write the following code and save it as an ASP file on the web server:
为了从服务器得到XML数据库响应,只须书写下述代码,并在网络服务器上把它保存为一份ASP文件就可以了:
<% rs.MoveFirst() response.write("<?xml version='1.0' encoding='ISO-8859-1'?>") rs.close() |
See the real life database output from the ASP file above.
看看上述ASP文件中的数据库的实际输出情况.
The example above uses ASP with ADO. If you don't know how to use ADO, please visit our ADO tutorial.
上述的案例使用了ASP,并在ASP中运用了ADO。如果你对ADO的用法还不了解,可以查阅我们的 ADO 教程。