Make sure you put quotes around your width attribute
<table width="100%"> instead of
<table width=100%>

You might be confusing the jsp parser with that
last '%>'.

Jim

> -----Original Message-----
> From: A mailing list about Java Server Pages specification and reference
> [mailto:[EMAIL PROTECTED]]On Behalf Of George Dawoud
> Sent: Tuesday, March 28, 2000 1:36 PM
> To: [EMAIL PROTECTED]
> Subject: JSP Ignore the top lines in my page
>
>
> 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

===========================================================================
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