[求助]初学XML,自己编写的一个小程序出了什么问题
<P>我写了一个XML的简历,在网页中总是显示不出来,我是照着老师的程序写的,代码也不多,怎么还是有问题。好心人帮忙看一下。<br><FONT color=#ff0000>下面是XML文件:</FONT><br><?xml version="1.0" encoding="gb2312"?><br><?xml-stylesheet href="resume.xsl" type="text/xsl"?></P><P><resume xmlns:xsi="<a href="http://www.sina.com.cn" target="_blank" >http://www.sina.com.cn</A>" xsi:naNamespaceSchemaLocation="resume.xsd"><br> <session1 date="2007-11-1" property="Personal information"><br> <name>Wang</name><br> <sex>male</sex><br> <id>0709120456</id><br> <major>Cryptography</major><br> <telephone>88200147</telephone><br> <taste>swimming</taste><br> </session1><br> <br> <session2><br> <subtitle>Objective</subtitle><br> <information authenticity="ture">To obtain a challenging position as a software engineer with an emphasis in software design and development.<br> </information><br> <br> <subtitle>Education</subtitle><br> <information authenticity="ture">2003.9-2007.7 Graduate School of XD University, B.E.<br> </information><br> <br> <subtitle>Computer Abilities</subtitle><br> <information authenticity="ture">Skilled in use of matlab,HTML, JavaScript, C, C++, Office 2003, SQL2000.<br> </information><br> <br> <subtitle>English Skills</subtitle><br> <information>Past CET-4 and CET-6.Have a good command of both spoken and written English.<br> </information><br> <br> <subtitle>Scholarship and Awards</subtitle><br> <information>Excellent graduate student</information><br> <br> <subtitle>Qualifications</subtitle><br> <information>Liablity for my job,innovative and sence of teamwork</information><br> </information>--><br> </session2><br></resume><br><br><br><FONT color=#ff0000>以下是XSL文件:</FONT><br><?xml version="1.0" encoding="gb2312"?><br><xsl:stylesheet version="1.0" xmlns:xsl="<a href="http://www.sina.com.cn" target="_blank" >http://www.sina.com.cn</A>"><br><xsl:template match="/"><br><html><br> <head><br> <title>Resume</title><br> </head><br> <body background="dirt.gif"><br> <h1 style="color:#000000;font-size:large;text-align:center;letter-spacing:normal ">Resume</h1><br> <br/><br> <xsl:apply-templates/><br> </body><br></html><br></xsl:template></P>
<P><xsl:template match="resume"><br> <xsl:apply-templates select="session1"><br> </xsl:apply-templates><br> <xsl:apply-templates select="session2"><br> </xsl:apply-templates><br></xsl:template></P>
<P><xsl:template match="session1"><br> <h2 style="font-weight:bold;text-align:left;font-size:18px"><xsl:value-of select="@property"/></h2><br> Name:<xsl:value-of select="name"/><br/> Sex:<xsl:value-of select="sex"/><br/><br> ID:<xsl:value-of select="id"/><br/> Major:<xsl:value-of select="major"/><br/><br> phone:<xsl:value-of select="telephone"/><br/> Taste:<xsl:value-of select="taste"/><br/><br></xsl:template></P>
<P><xsl:template match="session2"><br> <xsl:for-each select="subtitle"><br> <h2 style="font-weight:bold;text-align:left;font-size:18px"><xsl:value-of select="subtitle"/></h2><br> <xsl:value-of select="information"/><br> </xsl:for-each><br></xsl:template><br></xsl:stylesheet><br></P>
[align=right][color=#000066][此贴子已经被作者于2007-11-6 21:38:48编辑过][/color][/align]
页:
[1]
