Pues, si, alli mismo hay una etiqueta <%@ ... %>
sin embargo, no se cual es el problema en ello...
olvide decir que de java entiendo casi nada y que estoy comenzando con unas aplicaciones ya hechas :os vere que puedo hacer, mientras les pego el codigo completo, espero no molestarlos con ellos
estoy mientras buscando info acerca de este error... gracias nuevamente!! a vosotros!
Código:
<%@ page import="com.odatech.bwlite.util.OpcionMenu,
com.odatech.bwlite.model.Usuario,com.odatech.bwlite.model.Permiso,
java.util.ArrayList, java.util.Set, java.util.List" %>
<%@
int opSel = -1;
int opInf = -1;
%>
<html>
<head>
<META HTTP-EQUIV="Cache-Control" CONTENT ="no-cache">
<title>[Sistema] Ingreso al sistema</title>
<meta http-equiv="Content-Type" content="text/html;charset=utf-8" />
<link href='../css/style.css' type=text/css rel=stylesheet>
</head>
<body bgcolor='#FFFFFF' text='#000000' leftmargin='0' topmargin='0' marginwidth='0' marginheight='0'>
<%@ include file='menu.jsp' %>
<br>
<table width='280' border='0' cellspacing='0' cellpadding='0' align='center'>
<tr>
<td width='6' height='6'><img src='../images/cuadro1.gif' width='6' height='6'></td>
<td height='6' background='../images/fondo1.gif'><img src='../images/spacer.gif' width='1' height='1'></td>
<td width='6' height='6'><img src='../images/cuadro4.gif' width='6' height='6'></td>
</tr>
<tr>
<td width='6' background='../images/fondo4.gif'><img src='../images/spacer.gif' width='1' height='1'></td>
<td bgcolor='E9F1F6' class='textoTitulo' height='10'> <img src='../images/flecha_1.gif' width='4' height='7'>
Ingreso al sistema</td>
<td width='6' background='../images/fondo3.gif'><img src='../images/spacer.gif' width='1' height='1'></td>
</tr>
<tr>
<td width='6' height='6'><img src='../images/cuadro2.gif' width='6' height='6'></td>
<td height='6' background='../images/fondo2.gif'><img src='../images/spacer.gif' width='1' height='1'></td>
<td width='6' height='6'><img src='../images/cuadro3.gif' width='6' height='6'></td>
</tr>
</table>
<table width='280' border='0' cellspacing='0' cellpadding='0' align='center'>
<tr>
<td height='6'><img src='../images/spacer.gif' width='1' height='1'></td>
</tr>
</table>
<form name='form' method='post' action='LoginHandler?action=login'>
<table width='280' border='0' cellspacing='0' cellpadding='0' align='center'>
<tr>
<td width='6' height='6'><img src='../images/cuadro1.gif' width='6' height='6'></td>
<td height='6' background='../images/fondo1.gif'><img src='../images/spacer.gif' width='1' height='1'></td>
<td width='6' height='6'><img src='../images/cuadro4.gif' width='6' height='6'></td>
</tr>
<%@
if( request.getAttribute("ERROR") != null)
{%>
<tr>
<!-- esto sirve para que tengan los datos un borde izq para cada fila -->
<td width='6' background='../images/fondo4.gif'></td>
<td bgcolor='E9F1F6'>
<!-- TABLA PARA DATOS, que esta dentro del cuadro -->
<table width='100%' border='0' cellspacing='8' cellpadding='0' class='texto'>
<tr>
<td align='left' class='textoHawb' width='13%'><font color="#FF0000"><%@=request.getAttribute("ERROR")%></font></td>
</tr>
</table>
</td>
<td width='6' background='../images/fondo3.gif'> </td>
</tr>
<%@}
%>
<tr>
<td width='6' background='../images/fondo4.gif'> </td>
<td bgcolor='E9F1F6'>
<table width='350%' border='0' cellspacing='8' cellpadding='0'>
<tr>
<td>
<table width='100%' border='0' cellspacing='0' cellpadding='0' class='texto'>
<tr>
<td height='6' class='texto' colspan='3' align='left'><img src='../images/spacer.gif' width='1' height='1'></td>
</tr>
<tr>
<td height='18' class='texto' width='100' align='left'><img src='../images/flecha_1.gif' width='4' height='7'>
Nombre de usuario</td>
<td height='18' width='10'> </td>
<td height='18'>
<input type='text' name='name' class='texto' style='width: 142px' maxlength=20>
</td>
</tr>
<tr>
<td width='100' align='left'><img src='../images/flecha_1.gif' width='4' height='7'>
Contraseña</td>
<td width='10'> </td>
<td>
<input type='password' name='password' class='texto' style='width: 142px' maxlength=20>
</td>
</tr>
<tr>
<td colspan='3' height='6'><img src='../images/spacer.gif' width='1' height='1'></td>
</tr>
<tr>
<td width='100'> </td>
<td width='10'> </td>
<td>
<input type='image' border='0' name='imageField' src='../images/b_login.gif' width='52' height='22'>
</td>
</tr>
</table>
</td>
</tr>
</table>
</td>
<td width='6' background='../images/fondo3.gif'> </td>
</tr>
<tr>
<td width='6' height='6'><img src='../images/cuadro2.gif' width='6' height='6'></td>
<td height='6' background='../images/fondo2.gif'><img src='../images/spacer.gif' width='1' height='1'></td>
<td width='6' height='6'><img src='../images/cuadro3.gif' width='6' height='6'></td>
</tr>
</table>
</form>
</body>
</html>