Click here to Skip to main content
15,918,624 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: How can i post xml header in my output xml using xslt? [modified] Pin
jagjit_surfer19-Feb-09 19:48
jagjit_surfer19-Feb-09 19:48 
GeneralRe: How can i post xml header in my output xml using xslt? [modified] Pin
led mike20-Feb-09 4:39
led mike20-Feb-09 4:39 
Questiondatabase for device application Pin
C#@abhishek17-Feb-09 17:53
C#@abhishek17-Feb-09 17:53 
QuestionXSL GROUPING Pin
ajayget17-Feb-09 1:07
ajayget17-Feb-09 1:07 
QuestionGet the videos from a Youtube page through embedded tags using XML Parsing. Pin
Nekkantidivya16-Feb-09 23:50
Nekkantidivya16-Feb-09 23:50 
QuestionHow to get videos in a webpage through XML parsing? Pin
Nekkantidivya16-Feb-09 3:23
Nekkantidivya16-Feb-09 3:23 
QuestionXSL change font color and skip lines between Pin
jeffreyeas15-Feb-09 19:23
jeffreyeas15-Feb-09 19:23 
AnswerRe: XSL change font color and skip lines between Pin
jeffreyeas16-Feb-09 5:14
jeffreyeas16-Feb-09 5:14 
I got it

<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet
xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
version="1.0">
<xsl:output indent="yes"/>
<xsl:strip-space elements="*"/>
<xsl:template match="Message[Message]">
<html>
<body>
<table border="0">
<xsl:apply-templates select="Message"/>
</table>
</body>
</html>
</xsl:template>
<xsl:template match="Message[parent::Message]">
<tr>
<!--<td>
<xsl:value-of select="title"/>
</td>-->
<!--<td>
<xsl:value-of select="subtitle"/>
</td>-->
<td style="color:red;">
<xsl:value-of select="date"/>
</td>
<td style ="font-weight:bold">
<xsl:value-of select="messagetext"/>
</td>

</tr>
<br/>
</xsl:template>

</xsl:stylesheet>
QuestionTrim all innertext/attributes values with XSL Pin
Tony Pottier10-Feb-09 4:56
Tony Pottier10-Feb-09 4:56 
QuestionRe: Trim all innertext/attributes values with XSL Pin
led mike10-Feb-09 5:07
led mike10-Feb-09 5:07 
AnswerRe: Trim all innertext/attributes values with XSL Pin
Tony Pottier10-Feb-09 5:10
Tony Pottier10-Feb-09 5:10 
GeneralRe: Trim all innertext/attributes values with XSL Pin
led mike10-Feb-09 5:13
led mike10-Feb-09 5:13 
AnswerRe: Trim all innertext/attributes values with XSL Pin
George L. Jackson10-Feb-09 16:21
George L. Jackson10-Feb-09 16:21 
GeneralRe: Trim all innertext/attributes values with XSL Pin
Tony Pottier12-Feb-09 4:23
Tony Pottier12-Feb-09 4:23 
GeneralRe: Trim all innertext/attributes values with XSL Pin
led mike12-Feb-09 4:45
led mike12-Feb-09 4:45 
QuestionRe: Trim all innertext/attributes values with XSL [modified] Pin
George L. Jackson13-Feb-09 5:20
George L. Jackson13-Feb-09 5:20 
QuestionSchematron Pin
richard.white310-Feb-09 3:16
richard.white310-Feb-09 3:16 
QuestionViewing Xml in HTML page using IE6 in Tree view. Pin
Member 43923735-Feb-09 2:59
Member 43923735-Feb-09 2:59 
AnswerRe: Viewing Xml in HTML page using IE6 in Tree view. Pin
led mike5-Feb-09 4:42
led mike5-Feb-09 4:42 
GeneralRe: Viewing Xml in HTML page using IE6 in Tree view. Pin
Member 43923735-Feb-09 16:31
Member 43923735-Feb-09 16:31 
QuestionRe: Viewing Xml in HTML page using IE6 in Tree view. Pin
George L. Jackson6-Feb-09 10:33
George L. Jackson6-Feb-09 10:33 
QuestionRecommed XML Editor Pin
Don Burton4-Feb-09 12:35
Don Burton4-Feb-09 12:35 
AnswerRe: Recommed XML Editor Pin
led mike5-Feb-09 4:37
led mike5-Feb-09 4:37 
Questionjavascript and xml Pin
reta.me4-Feb-09 7:44
reta.me4-Feb-09 7:44 
AnswerRe: javascript and xml Pin
Curtis Schlak.26-Feb-09 16:00
Curtis Schlak.26-Feb-09 16:00 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.