Click here to Skip to main content
15,893,904 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: How to Check whether we can use XSL 2.0? Pin
George L. Jackson4-Sep-07 16:26
George L. Jackson4-Sep-07 16:26 
Questionread xml using javascript Pin
pradeep kumarappagari3-Sep-07 1:37
pradeep kumarappagari3-Sep-07 1:37 
Questionhow to put a space between the word e,g 'LogConfig' = 'Log Config' Pin
Rocky#3-Sep-07 1:27
Rocky#3-Sep-07 1:27 
Questionxmlbulkload Pin
Panchal Hardik3-Sep-07 1:16
Panchal Hardik3-Sep-07 1:16 
AnswerRe: xmlbulkload Pin
Panchal Hardik3-Sep-07 2:40
Panchal Hardik3-Sep-07 2:40 
QuestionProblems with converting large .csv files to xml... Pin
tiasoft2-Sep-07 20:41
tiasoft2-Sep-07 20:41 
QuestionProblem in displaying the names of XML nodes Pin
Rocky#31-Aug-07 0:20
Rocky#31-Aug-07 0:20 
AnswerRe: Problem in displaying the names of XML nodes Pin
George L. Jackson31-Aug-07 10:52
George L. Jackson31-Aug-07 10:52 
<?xml version="1.0" encoding="utf-8"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
<xsl:template match="/">
<html>
<head>
<title>Call Sequence</title>
</head>
<body>
<xsl:apply-templates select="CallSequence/Call/Arguments"/>
</body>
</html>
</xsl:template>
<xsl:template match="Arguments">
<table>
<tr>
<xsl:apply-templates select="*[name() != 'Results'] | Results/child::node()[1] | Results/child::node()[1] / child::node()[2]"/>
</tr>
</table>
</xsl:template>
<xsl:template match="*">
<th><xsl:value-of select="name()"/></th>
</xsl:template>
</xsl:stylesheet>



"We make a living by what we get, we make a life by what we give." --Winston Churchill

GeneralRe: Problem in displaying the names of XML nodes Pin
Rocky#2-Sep-07 20:29
Rocky#2-Sep-07 20:29 
GeneralRe: Problem in displaying the names of XML nodes Pin
George L. Jackson3-Sep-07 4:39
George L. Jackson3-Sep-07 4:39 
GeneralRe: Problem in displaying the names of XML nodes Pin
Rocky#3-Sep-07 19:11
Rocky#3-Sep-07 19:11 
AnswerRe: Problem in displaying the names of XML nodes Pin
George L. Jackson31-Aug-07 11:41
George L. Jackson31-Aug-07 11:41 
QuestionHow to add xml-Stylesheet line to xml-file? [modified] Pin
error140830-Aug-07 4:41
error140830-Aug-07 4:41 
AnswerRe: How to add xml-Stylesheet line to xml-file? Pin
led mike30-Aug-07 5:06
led mike30-Aug-07 5:06 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
error140830-Aug-07 5:09
error140830-Aug-07 5:09 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
led mike30-Aug-07 5:20
led mike30-Aug-07 5:20 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
error140830-Aug-07 5:23
error140830-Aug-07 5:23 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
led mike30-Aug-07 6:02
led mike30-Aug-07 6:02 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
error140830-Aug-07 7:43
error140830-Aug-07 7:43 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
George L. Jackson30-Aug-07 8:24
George L. Jackson30-Aug-07 8:24 
GeneralRe: How to add xml-Stylesheet line to xml-file? Pin
led mike30-Aug-07 10:02
led mike30-Aug-07 10:02 
QuestionGeneration of inline code in ASP.NET by XSL [modified] Pin
Wild Rover29-Aug-07 1:41
Wild Rover29-Aug-07 1:41 
AnswerRe: Generation of inline code in ASP.NET by XSL Pin
George L. Jackson29-Aug-07 12:32
George L. Jackson29-Aug-07 12:32 
GeneralRe: Generation of inline code in ASP.NET by XSL Pin
Wild Rover29-Aug-07 20:45
Wild Rover29-Aug-07 20:45 
GeneralRe: Generation of inline code in ASP.NET by XSL Pin
George L. Jackson29-Aug-07 23:50
George L. Jackson29-Aug-07 23:50 

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.