Click here to Skip to main content
15,925,782 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: The code for the above message is here Pin
Heath Stewart18-Nov-03 8:34
protectorHeath Stewart18-Nov-03 8:34 
GeneralMSXML PARSER 4.0 problem Pin
impeham3-Nov-03 22:04
impeham3-Nov-03 22:04 
GeneralRe: MSXML PARSER 4.0 problem Pin
LordEsined4-Nov-03 10:40
LordEsined4-Nov-03 10:40 
GeneralRe: MSXML PARSER 4.0 problem Pin
impeham4-Nov-03 21:39
impeham4-Nov-03 21:39 
GeneralRe: MSXML PARSER 4.0 problem Pin
LordEsined5-Nov-03 4:11
LordEsined5-Nov-03 4:11 
GeneralRe: MSXML PARSER 4.0 problem Pin
impeham6-Nov-03 6:02
impeham6-Nov-03 6:02 
Generalsome body help me............! Pin
Ahmed El Sherbeeny31-Oct-03 22:33
Ahmed El Sherbeeny31-Oct-03 22:33 
GeneralLoading XSL Templates Pin
thekcins31-Oct-03 13:34
thekcins31-Oct-03 13:34 
I'm using an XML file to hold a bunch of links, each of these links also have a category assigned to them.

Here is an example:
<br />
- <links><br />
<linkNum>57 <br />
<linkType>Business Links <br />
<linkName>Clark County Services <br />
<linkURL>http://www.co.clark.nv.us <br />


I use this .asp script that loads an XML file with an XSL file.
The beauty of this ASP file was that you could pass the name of the XSL file, and it would load it. Now what I would like to do, is just have 1 xsl file, and use the .asp file to transform only a certain template in the .xsl file. (There would be several different teplates in there...)
Is this possible?
Below is the .asp file I'm using...

<br />
sub dispXML(toCall)<br />
'------ Find out which XSL file needs to be called ------------<br />
<br />
styleFile = Server.MapPath(toCall)<br />
<br />
'------ DISPLAY THE XML DATA ------------<br />
' Linking XML and XSL together<br />
sourceFile = Server.MapPath("linkList.xml")<br />
set source = Server.CreateObject("Microsoft.XMLDOM")<br />
source.async = false<br />
source.load(sourceFile)<br />
set style = Server.CreateObject("Microsoft.XMLDOM")<br />
style.async = false<br />
style.load(styleFile)<br />
Response.Write source.transformNode(style)<br />
<br />
end sub<br />


Any help would be great. Thanks.
GeneralRe: Loading XSL Templates Pin
Philip Fitzsimons4-Nov-03 7:36
Philip Fitzsimons4-Nov-03 7:36 
GeneralRe: Loading XSL Templates Pin
thekcins4-Nov-03 18:48
thekcins4-Nov-03 18:48 
GeneralRe: Loading XSL Templates Pin
Brandon Haase13-Nov-03 15:35
Brandon Haase13-Nov-03 15:35 
QuestionXSLT in EVC++? Pin
slomoman25-Oct-03 23:29
slomoman25-Oct-03 23:29 
GeneralHELP! XPath Syntax Pin
mikasa23-Oct-03 9:29
mikasa23-Oct-03 9:29 
GeneralRe: HELP! XPath Syntax Pin
Philip Fitzsimons24-Oct-03 2:58
Philip Fitzsimons24-Oct-03 2:58 
GeneralRe: HELP! XPath Syntax Pin
mikasa24-Oct-03 3:10
mikasa24-Oct-03 3:10 
QuestionHow to send XMLdata to exe file Pin
yu-yu22-Oct-03 14:55
yu-yu22-Oct-03 14:55 
AnswerRe: How to send XMLdata to exe file Pin
Edbert P22-Oct-03 21:26
Edbert P22-Oct-03 21:26 
GeneralRe: How to send XMLdata to exe file Pin
yu-yu23-Oct-03 3:32
yu-yu23-Oct-03 3:32 
GeneralRe: How to send XMLdata to exe file Pin
Edbert P23-Oct-03 13:04
Edbert P23-Oct-03 13:04 
GeneralRe: How to send XMLdata to exe file Pin
yu-yu23-Oct-03 14:21
yu-yu23-Oct-03 14:21 
GeneralRe: How to send XMLdata to exe file Pin
Edbert P23-Oct-03 15:04
Edbert P23-Oct-03 15:04 
GeneralRe: How to send XMLdata to exe file Pin
yu-yu23-Oct-03 18:55
yu-yu23-Oct-03 18:55 
QuestionMSXML Parser??CreateNode???? Pin
xxhimanshu20-Oct-03 23:22
xxhimanshu20-Oct-03 23:22 
AnswerRe: MSXML Parser??CreateNode???? Pin
Philip Fitzsimons21-Oct-03 2:43
Philip Fitzsimons21-Oct-03 2:43 
GeneralXML round trip problems Pin
james-cxx20-Oct-03 14:01
james-cxx20-Oct-03 14:01 

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.