簡単に表示するだけならこれでよいのでは?
ちなみに「?」は半角スペースです。

<?xml version="1.0" encoding="Shift_JIS"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="1.0">

<xsl:template match="/">
<html>
<head>
<title><xsl:value-of select="page/title"/></title>
</head>
<body>
<xsl:for-each select="page/content/row">
<xsl:value-of select="customer-code" />?
<xsl:value-of select="name_kj" />
<br />
</xsl:for-each>
</body>
</html>
</xsl:template>

</xsl:stylesheet>

表形式にするなら<table>タグ等で整形してやればOK