Hi,

I'm having problems with a JSP page where it ignores some of the html or
even the jsp that i have in my code

<%@ include file="_Header.jsp" %>


<TABLE width=100%>
<TR>
     <TH>ID</TH>
     <TH>Submited by</TH>
     <TH>Date</TH>
     <TH>Status</TH>
</TR>
<TR>
     <TD>1</TD>
     <TD>George Dawoud</TD>
     <TD>3/27/200</TD>
     <TD>New</TD>
</TR>
</Table>

<%@ include file="../includes/_MainFooter.jsp" %>

if i run this page as is, it will ignore the

"<TABLE width=100%>
<TR>
     <TH>ID</TH>
     <TH>Submited b"

part in the code output


<tr>
     <td bgcolor=lightblue width=1 valign=top>&nbsp;</td>
     <td width=100% valign=top colspan="2">
     <UL>


y</TH>
     <TH>Date</TH>
     <TH>Status</TH>
</TR>
<TR>
     <TD>1</TD>
     <TD>George Dawoud</TD>
     <TD>3/27/200</TD>
     <TD>New</TD>
</TR>
</Table>

    </UL>
   </td>


any help will be great

Thanks
George

===========================================================================
To unsubscribe: mailto [EMAIL PROTECTED] with body: "signoff JSP-INTEREST".
Some relevant FAQs on JSP/Servlets can be found at:

 http://java.sun.com/products/jsp/faq.html
 http://www.esperanto.org.nz/jsp/jspfaq.html
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=JSP
 http://www.jguru.com/jguru/faq/faqpage.jsp?name=Servlets

Reply via email to