Can't remember exactly off the top of my head but...
All tags need to be lower case. You have some upper case TD and TR tags in there etc. plus others.
Attributes must be surrounded with quotes ""
example: BORDER=0 becomes border="0"
All the above also work with with html as well as xhtml so it would be good if it was changed.
Tags are often self closing (but not tables, rows and columns): <IMG SRC ="theimage.jpg" ></IMG>
becomes
<img src="theimage.jpg" />
( note that it is all lower case and you drop the </IMG> because it is now self closed with /> )
By doing the above the calendar now validates as xtml which is a real bonus. See my site and there is a validate button at the bottom of the screen: www.rhonddacynontaff.com
I have also introduced another parameter called <%ShowPrevNext=%>
This is either 0 or 1 and makes the previous/next graphic buttons appear/disappear. The reason I needed this is that sometimes I want to show the default month and not allow the user to browse previous/next.
If all the above were built into the next version that would save me a lot of work when applying the behaviour to new sites [:D] |
|
|