用asp.net和xml做的新闻更新系统(1)

2012 年 11 月 9 日5740

你的位置:软件学院

>> IT教程

>> asp基础

>> 用asp.net和xml做的新闻更新系统(1)

>> 详细内容

在线投稿

用asp.net和xml做的新闻更新系统(1)

发布:

2006-07-08|作者: admin|

来源: 不详

上一篇 下一篇

读了很多关于.net的文章,也看了许多关于xml的资料,我已经深深的被他们的魅力所吸引。在网上的论坛中,大家对于.net的讨论更加火热一些,而我们的同事告诉我,其实xml是一个比.net更好的东西。包括其中的xslt,其未来要远远比.net要好。
其实争论谁好谁坏本身是没有多大意思的,因为.net本身已经和xml紧密的结合在一起了。这里我就用xml代替数据,写一个新闻发布系统,希望能够起到抛砖引玉的作用,使更多的人能够了解这些最新的技术。
下面介绍这几个文件。 </P><P>contents.xml
<?xml version="1.0" encoding="GB2312"?>
<topiclist type="AspCool News">
<topic>
<title>aspcool news!</title>
<href>main.aspx?name=hello</href>
</topic>
<topic>
<title>Resolve a problem</title>
<href>main.aspx?name=test</href>
</topic>
</topiclist> </P><P>这是一个很简单的xml文件,它的作用是用来显示新闻的列表。 </P><P>hello.xml </P><P><?xml version="1.0" encoding="GB2312"?>
<document>
<title>aspcool news!</title>
<abstract>test news</abstract>
<author>feiying</author>
<content>
<paragraph>The firet test</paragraph>
</content>
</document> </P><P>

上一篇 下一篇

图文资讯

0 0