Computer Science Canada Trouble with xsl |
Author: | StarGateSG-1 [ Mon Apr 24, 2006 8:37 am ] | ||||||
Post subject: | Trouble with xsl | ||||||
Hello, I am having a problem with this xsl file, for some reason (below) it doesn't load, yet all my other files work and they are off the same templete. Here is the Error:
Here is the code: This is Quick_Report_Data.xml
This is Quick_Report.xsl
Any help would be really great. Thank you! |
Author: | StarGateSG-1 [ Wed Apr 26, 2006 8:04 am ] |
Post subject: | |
Hello, Can anyone help me? I don't mean to be rude, but I have a deadline in 2 months and I need to get this program working, I spent lots of time on it and It doesn't amke sense, no other forum has been able you are my last hope CompSci, don;t let me down. Thank you |
Author: | rdrake [ Wed Apr 26, 2006 10:38 am ] | ||
Post subject: | |||
Typo in the first one
Sorry, I've been buried in a mountain of config files. |
Author: | StarGateSG-1 [ Thu Apr 27, 2006 8:16 am ] |
Post subject: | |
Wow, Lol, I never noticed that. I guess it takes a clearer head sometimes. Thanks Edit: Hmm... that did not fix the problem. |
Author: | Corvillus [ Thu May 11, 2006 10:28 pm ] | ||
Post subject: | |||
It's exactly as the error said, you forgot to close all the xsl tags. Since XSLT scripts are XML documents, they must be well formed (all tags must be closed, all attributes must be defined, among other things) in order to work. Adding
to the end should fix it. |