html link and script tags in xsl?

admin

Administrator
Staff member
i have a code like this:

<?xml version="1.0" encoding="UTF-8"?>
<xsl:stylesheet
version="1.0"
xmlns:fmrs="http://www.filemaker.com/xml/fmresultset"
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
exclude-result-prefixes="xsl fmrs" >

<?xslt-cwp-query params="-grammar=fmresultset"?>

<xsl:template match="/">
<html>
<head>
<title>Staff</title>

<script type=text/javascript src=http://www.webdeveloper.com/forum/archive/index.php/"menu.js"></script>
<link rel="stylesheet" href="style.css" type="text/css" />

</head>
<body>
etc. etc.

why can't i have the link tag and script tag like this???
how can i link to an external css and js file???
 
Back
Top