Xml-xsl

This is a discussion on "Xml-xsl" within the Other Programming Languages section. This forum, and the thread "Xml-xsl are both part of the Program Your Website category.



 Subscribe in a reader

Go Back   Webforumz.com > Main Forums > Program Your Website > Other Programming Languages

Notices


Reply
 
LinkBack Thread Tools
  #1  
Old Jan 3rd, 2006, 19:38
New Member
Join Date: Jan 2006
Age: 26
Posts: 2
Thanks: 0
Thanked 0 Times in 0 Posts
Xml-xsl

can anyone tell me how can i include <?xml-stylesheet type="text/css" href="page3.css"/?> in the XSL file in order to come out in the output file?

for example i have this:

<?xml version='1.0'?>
<xsl:stylesheet version="1.0" xmlnssl="http://www.w3.org/1999/XSL/Transform">
<?xml-stylesheet type="text/css" href="page3.css"/?>
<xsl:template match="users">
<page3>
<registered>
<title>Registered</title>
<gift>
<header1>User's Full Name</header1>
<header2>Gift Name</header2>
</gift>
<xsl:for-each select="user/giftR">
<xsl:if test='purchased="no"'>
<gift>
<user>
<xsl:value-of select="../fullname"/>
</user>
<giftname>
<xsl:value-of select="name"/>
</giftname>
</gift>
</xsl:if>
</xsl:for-each>
</registered>

but <?xml-stylesheet type="text/css" href="page3.css"/?> is ommited on the output and i need it so that the xml output is displayed nicely with css2

thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!Spurl this Post!Reddit! Wong this Post!
Reply With Quote

Reply

Tags
xmlxsl

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


All times are GMT. The time now is 01:32.


Powered by vBulletin®
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.2.0 RC8
© 2003-2008 Webforumz.com : All Rights Reserved

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42