RE: [xsl] Changing original html with XSL

Subject: RE: [xsl] Changing original html with XSL
From: "Miller, Mark" <Mark.Miller@xxxxxxxxxxxxxxxx>
Date: Thu, 21 May 2009 14:26:16 -0400
Robert,


> So I have a page that has initial HTML and then I have have
> xsl generate other html to put into the original html. I am
> able to get the generated html into the body tag, but I also
> wanted to added more code to the <head> </head> tag. Is there
> a way to insert code into the original head tag? For instance....
>
> Original html file....
>
> <html>
> <head>
>     JS and other stuff including title....
> </head>
>
> <body>
> <div id="XSL ADDS SOME HERE"> </div>
>
> </body>
> </html>
>
> And then .xsl file has something like
>
> <xsl:output method="html"/>
> <xsl:template match="/">
> <head>
>        Add more JS
>
> </head
>
> </xsl:template>
>
> Is there a way to get the xsl files <head> data into the
> original head tag?

I do this by having the xsl create a separate html file with the HTML I
need to be inserted and then use an include statement in the main HTML
file.  This requires that you be able to run .asp or .jsp pages.

Xsl output as file.htm:

<p><h1>Hello World</h1></p>


Original html file....

<html>
<head>
    <!-- include file="file.htm" -->
</head>
<body>
</body>

</html>

Mark J. Miller

Current Thread