Hi,
If you look at the following blocks
Quote:
quote:
...
<jsp:include page="mjwn/Sundayschedule.html"/>
</jsp:include>
...
<jsp:include page="Mondayschedule.html"/>
</jsp:include>
...
<jsp:include page="Tuesdayschedule.html"/>
</jsp:include>
...
<jsp:include page="Wednesdayschedule.html"/>
</jsp:include>
...
<jsp:include page="Thursdayschedule.html"/>
</jsp:include>
...
</html>
|
you've closed the <jsp:include ...> tag inline and again for the second time you've used closing tag for <jsp:include> [</jsp:include>]
remove the closing tags it'll work.
Use
<jsp:include .../> or <jsp:include ...></jsp:include>
Regards,
Rakesh