
-----------------------------------
StarGateSG-1
Mon Apr 24, 2006 8:37 am

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:
The following tags were not closed: xsl:stylesheet, xsl:template. Error processing resource 'file://S205fs/0051400/Grade 12 Programming/Program/Quick_Report.xsl'. 

Here is the code:
This is Quick_Report_Data.xml




	100
	
	80
	
	45
	
	900
	


This is Quick_Report.xsl








th{text-align: center}
td{text-align: center}

Attendance Report by Period


Attendance Report Summary


Time Frame
Total Students
Students in Attendance


Yesterdays Attendance
#



Last Weeks Attendance
#



Last Months Attendance
#






Any help would be really great.

Thank you!

-----------------------------------
StarGateSG-1
Wed Apr 26, 2006 8:04 am


-----------------------------------
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

-----------------------------------
rdrake
Wed Apr 26, 2006 10:38 am


-----------------------------------
Typo in the first one100

Sorry, I've been buried in a mountain of config files.

-----------------------------------
StarGateSG-1
Thu Apr 27, 2006 8:16 am


-----------------------------------
Wow,

Lol, I never noticed that. I guess it takes a clearer head sometimes.

Thanks

Edit: Hmm... that did not fix the problem.

-----------------------------------
Corvillus
Thu May 11, 2006 10:28 pm


-----------------------------------
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.
