Click here to Skip to main content
16,005,138 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: Sending XML to server via HTTP Pin
Alex Korchemniy16-Oct-04 11:33
Alex Korchemniy16-Oct-04 11:33 
GeneralXSL Transform to HTML Pin
Adam Gritt8-Oct-04 4:54
Adam Gritt8-Oct-04 4:54 
GeneralRe: XSL Transform to HTML Pin
Christian Graus17-Oct-04 11:03
protectorChristian Graus17-Oct-04 11:03 
GeneralHTML with XSLT Pin
hatim_ali7-Oct-04 18:30
hatim_ali7-Oct-04 18:30 
GeneralRe: HTML with XSLT Pin
rt28007-Oct-04 18:58
professionalrt28007-Oct-04 18:58 
GeneralXSLT - HTML Pin
hatim_ali7-Oct-04 18:28
hatim_ali7-Oct-04 18:28 
GeneralRe: XSLT - HTML Pin
Christian Graus19-Oct-04 10:10
protectorChristian Graus19-Oct-04 10:10 
GeneralRe: XSLT - HTML Pin
Het210926-Oct-04 3:10
Het210926-Oct-04 3:10 
Try something like this giving condition in this way dont know what is there in ur xsl, but this might work if there is only 1 condition

<xsl:if test="age &gt; 40">
<tr>
<td><xsl:value-of select="title"/></td>
<td><xsl:value-of select="artist"/></td>
</tr>
</xsl:if>

or try with choose

<td><xsl:value-of select="title"/></td>
<xsl:choose>
<xsl:when test="age &gt; 10">
<td bgcolor="#ff00ff">
<xsl:value-of select="artist"/></td>
</xsl:when>
<xsl:otherwise>
<td><xsl:value-of select="artist"/></td>
</xsl:otherwise>
</xsl:choose>

here age artist title etc are tags of XML

try this out!


Smile | :) Be Humble in Victory and Strong in Defeat.Smile | :) -Het
Generalmsxml DOM and character entities Pin
necroleak6-Oct-04 6:03
sussnecroleak6-Oct-04 6:03 
GeneralXML &amp; character entities Pin
necroleak6-Oct-04 1:01
sussnecroleak6-Oct-04 1:01 
GeneralRe: XML &amp; character entities Pin
necroleak6-Oct-04 2:42
sussnecroleak6-Oct-04 2:42 
GeneralWrite XmlElement Pin
Aubyone5-Oct-04 19:49
Aubyone5-Oct-04 19:49 
Generalusing xslt params to search for elements Pin
Mike Hodnick2-Oct-04 18:30
Mike Hodnick2-Oct-04 18:30 
GeneralRe: using xslt params to search for elements Pin
Mike Ellison2-Oct-04 18:38
Mike Ellison2-Oct-04 18:38 
GeneralRe: using xslt params to search for elements Pin
Mike Hodnick2-Oct-04 18:56
Mike Hodnick2-Oct-04 18:56 
GeneralRe: using xslt params to search for elements Pin
Stuart Dootson2-Oct-04 22:04
professionalStuart Dootson2-Oct-04 22:04 
GeneralRe: using xslt params to search for elements Pin
Stuart Dootson2-Oct-04 22:36
professionalStuart Dootson2-Oct-04 22:36 
GeneralRe: using xslt params to search for elements Pin
Mike Hodnick3-Oct-04 2:07
Mike Hodnick3-Oct-04 2:07 
GeneralMY very own language Pin
shiko2-Oct-04 7:26
shiko2-Oct-04 7:26 
GeneralRe: MY very own language Pin
Alex Korchemniy16-Oct-04 11:27
Alex Korchemniy16-Oct-04 11:27 
QuestionHow to populate grid without reforming an xml Pin
manivannan.p2-Oct-04 2:05
manivannan.p2-Oct-04 2:05 
GeneralXSL For Loop Problem while using variable Pin
jjjkkk1-Oct-04 12:21
jjjkkk1-Oct-04 12:21 
GeneralRe: XSL For Loop Problem while using variable Pin
Mike Ellison1-Oct-04 20:06
Mike Ellison1-Oct-04 20:06 
GeneralRe: XSL For Loop Problem while using variable Pin
jjjkkk4-Oct-04 12:08
jjjkkk4-Oct-04 12:08 
GeneralRe: XSL For Loop Problem while using variable Pin
jjjkkk4-Oct-04 12:16
jjjkkk4-Oct-04 12:16 

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.