Click here to Skip to main content
15,926,596 members
Home / Discussions / XML / XSL
   

XML / XSL

 
AnswerRe: Ideas for Field element Pin
George L. Jackson28-Aug-07 5:50
George L. Jackson28-Aug-07 5:50 
GeneralRe: Ideas for Field element Pin
Brady Kelly28-Aug-07 6:02
Brady Kelly28-Aug-07 6:02 
QuestionDisplay XML in HTML... Pin
Mahesh Kulkarni27-Aug-07 23:38
Mahesh Kulkarni27-Aug-07 23:38 
AnswerRe: Display XML in HTML... Pin
George L. Jackson28-Aug-07 13:54
George L. Jackson28-Aug-07 13:54 
QuestionPassing a List object to an xslt file Pin
Ryno Burger23-Aug-07 10:29
Ryno Burger23-Aug-07 10:29 
AnswerRe: Passing a List object to an xslt file Pin
led mike28-Aug-07 5:07
led mike28-Aug-07 5:07 
QuestionXSL transformation of child nodes Pin
rana7423-Aug-07 2:59
rana7423-Aug-07 2:59 
AnswerRe: XSL transformation of child nodes Pin
George L. Jackson24-Aug-07 12:35
George L. Jackson24-Aug-07 12:35 
<?xml version="1.0"?>
<xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"
xmlns:input="cross-field-validation-namespace">
<xsl:template match="/input:root">
<xsl:element name="{local-name()}">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="input:event">
<xsl:element name="properties">
<xsl:apply-templates/>
</xsl:element>
</xsl:template>
<xsl:template match="*">
<xsl:element name="property">
<xsl:attribute name="name">
<xsl:value-of select="local-name()"/>
</xsl:attribute>
<xsl:attribute name="string_value">
<xsl:value-of select="."/>
</xsl:attribute>
</xsl:element>
</xsl:template>
</xsl:stylesheet>

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

QuestionObtaining MSXML interfacte Pin
koumodaki22-Aug-07 6:50
koumodaki22-Aug-07 6:50 
AnswerRe: Obtaining MSXML interfacte Pin
Michael Dunn22-Aug-07 7:42
sitebuilderMichael Dunn22-Aug-07 7:42 
QuestionPlease help in XMLReader of c#.NET Pin
hemendravyas20-Aug-07 19:53
hemendravyas20-Aug-07 19:53 
AnswerRe: Please help in XMLReader of c#.NET Pin
Stefan Troschuetz21-Aug-07 2:23
Stefan Troschuetz21-Aug-07 2:23 
QuestionIssues w/ xsd.exe tool Pin
mcs13019-Aug-07 1:14
mcs13019-Aug-07 1:14 
QuestionFOR XML EXPLICIT Pin
Riaan Booyzen14-Aug-07 22:20
Riaan Booyzen14-Aug-07 22:20 
QuestionConvert Excel to XML Pin
T4AMD14-Aug-07 9:43
T4AMD14-Aug-07 9:43 
QuestionXML file uploading Pin
Milind Panchal14-Aug-07 0:36
Milind Panchal14-Aug-07 0:36 
QuestionImages path in xml Pin
seemamltn13-Aug-07 17:44
seemamltn13-Aug-07 17:44 
AnswerRe: Images path in xml Pin
Rocky#21-Aug-07 1:10
Rocky#21-Aug-07 1:10 
QuestionXMl document for Model the images Pin
seemamltn13-Aug-07 11:30
seemamltn13-Aug-07 11:30 
AnswerRe: XMl document for Model the images Pin
Rocky#21-Aug-07 1:13
Rocky#21-Aug-07 1:13 
QuestionData transfering in DTS from Access to SQl table Pin
Vimalsoft(Pty) Ltd13-Aug-07 4:35
professionalVimalsoft(Pty) Ltd13-Aug-07 4:35 
QuestionRe: Data transfering in DTS from Access to SQl table Pin
George L. Jackson16-Aug-07 0:19
George L. Jackson16-Aug-07 0:19 
Questionhow do we split single cell into rows in XSLT Pin
Vinay Dornala13-Aug-07 2:53
Vinay Dornala13-Aug-07 2:53 
AnswerRe: how do we split single cell into rows in XSLT Pin
George L. Jackson16-Aug-07 0:17
George L. Jackson16-Aug-07 0:17 
QuestionTable that spans multiple rows Pin
totig13-Aug-07 0:14
totig13-Aug-07 0:14 

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.