<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/TR/WD-xsl">
	<xsl:template match="/">
		<html>
			<head>
				<meta http-equiv="Content-Type" content="text/html; charset=gb2312"/>
				<title>demo3</title>
			</head>
			<body>
				<p align="center">Student Infor.</p>
				<xsl:for-each select="student">
					<form method="POST" action="--WEBBOT-SELF--">
						<table border="0" cellpadding="0" cellspacing="0" style="border-collapse: collapse" bordercolor="#111111" width="100%" id="AutoNumber1">
							<tr>
								<td width="45%" align="right">studentID:</td>
								<td width="50%">
									<input type="text" name="studentID" size="20">
										<xsl:attribute name="value">
											<xsl:value-of select="studentID"/>
										</xsl:attribute>
									</input>
								</td>
							</tr>
							<tr>
								<td width="45%" align="right">name: </td>
							
								<td width="50%">
									<input type="text" name="name" size="20">
										<xsl:attribute name="value">
											<xsl:value-of select="name"/>
										</xsl:attribute>
									</input>
								</td>
							</tr>
							<tr>
								<td width="45%" align="right">sex: </td>
							
								<td width="50%">
									<input type="text" name="sex" size="20">
										<xsl:attribute name="value">
											<xsl:value-of select="sex"/>
										</xsl:attribute>
									</input>
								</td>
							</tr>
							<tr>
								<td width="45%" align="right">age: </td>
								
								<td width="50%">
									<input type="text" name="age" size="20">
										<xsl:attribute name="value">
											<xsl:value-of select="age"/>
										</xsl:attribute>
									</input>
								</td>
							</tr>
						</table>
						<p align="center">
							<input type="submit" value="Submit" name="B1"/>
							<input type="reset" value="Reset" name="B2"/>
						</p>
					</form>
				</xsl:for-each>
			
			</body>
		</html>
	</xsl:template>
</xsl:stylesheet>

