Click here to Skip to main content
15,908,172 members
Home / Discussions / XML / XSL
   

XML / XSL

 
GeneralRe: Using in characters in string again Pin
Shog922-Oct-02 4:02
sitebuilderShog922-Oct-02 4:02 
GeneralXML Serialization and Encryption Pin
jwyse412-Oct-02 19:27
sussjwyse412-Oct-02 19:27 
GeneralRe: XML Serialization and Encryption Pin
Paul Ingles13-Oct-02 2:15
Paul Ingles13-Oct-02 2:15 
Generalxpath & namespace Pin
huikm10-Oct-02 3:28
huikm10-Oct-02 3:28 
GeneralRe: xpath & namespace Pin
Shog914-Oct-02 19:18
sitebuilderShog914-Oct-02 19:18 
GeneralRe: xpath & namespace Pin
Anonymous14-Oct-02 20:51
Anonymous14-Oct-02 20:51 
GeneralRe: xpath & namespace Pin
Shog915-Oct-02 6:31
sitebuilderShog915-Oct-02 6:31 
Generalgenerating XSL with ASP Pin
Bart Meirens9-Oct-02 10:02
Bart Meirens9-Oct-02 10:02 
I'd like to generate an XSL using ASP3.0
I've already written the code to make the XSL, but when loading it in to another ASP-page so that it can style a XML, I get the following error:
msxml3.dll error '80004005'

The stylesheet does not contain a document element. The stylesheet may be empty, or it may not be a well-formed XML document.

This while the beginning of the XSL-page clearly makes a root-element:

<%
Response.ContentType = "text/xml"
Response.Expires = 0

Set result = Server.CreateObject("Microsoft.XMLDOM")
%>
<?xml version="1.0" encoding="ISO-8859-1"?>
<%
'// add a node to the result tree for the stylesheet declaration
Set oNewNode = result.createNode("element","xsl:stylesheet", "http://www.w3.org/1999/XSL/Transform")
oNewNode.setAttribute "version","1.0"
oNewNode.setAttribute "xmlns:xsl","http://www.w3.org/1999/XSL/Transform"
result.appendChild(oNewNode)

'// the stylesheet declaration is the outermost grouping tag. It is the root
'// element and parent to all other elements
Set root = result.documentElement
...

What might be a sollution to fix this?

GeneralRe: generating XSL with ASP Pin
Christian Graus9-Oct-02 22:39
protectorChristian Graus9-Oct-02 22:39 
GeneralXML and Binary data Pin
Todd Smith8-Oct-02 13:48
Todd Smith8-Oct-02 13:48 
GeneralRe: XML and Binary data Pin
Paul Watson8-Oct-02 21:42
sitebuilderPaul Watson8-Oct-02 21:42 
Generalusing xsl Pin
dsk7-Oct-02 20:45
dsk7-Oct-02 20:45 
GeneralRe: using xsl Pin
Paul Watson7-Oct-02 21:49
sitebuilderPaul Watson7-Oct-02 21:49 
GeneralRe: using xsl Pin
Brandon Driesen8-Oct-02 1:51
Brandon Driesen8-Oct-02 1:51 
Generalxsd:fractionDigits Pin
Hans Ruck26-Sep-02 0:02
Hans Ruck26-Sep-02 0:02 
GeneralRe: xsd:fractionDigits Pin
The1-Oct-02 0:02
The1-Oct-02 0:02 
GeneralRe: xsd:fractionDigits Pin
Hans Ruck1-Oct-02 0:28
Hans Ruck1-Oct-02 0:28 
GeneralRe: xsd:fractionDigits Pin
The1-Oct-02 0:28
The1-Oct-02 0:28 
GeneralRe: xsd:fractionDigits Pin
The1-Oct-02 0:56
The1-Oct-02 0:56 
GeneralRe: xsd:fractionDigits Pin
Hans Ruck1-Oct-02 1:12
Hans Ruck1-Oct-02 1:12 
GeneralRe: xsd:fractionDigits Pin
The1-Oct-02 1:29
The1-Oct-02 1:29 
QuestionUnsupported chars? Pin
Rickard Andersson2025-Sep-02 2:26
Rickard Andersson2025-Sep-02 2:26 
AnswerRe: Unsupported chars? Pin
Anonymous25-Sep-02 2:35
Anonymous25-Sep-02 2:35 
Questionhow to display xml in IE6? Pin
Segal24-Sep-02 19:46
Segal24-Sep-02 19:46 
AnswerRe: how to display xml in IE6? Pin
Anonymous24-Sep-02 22:00
Anonymous24-Sep-02 22: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.