org.apache.jasper.JasperException: /jsp/common/GL_nomineeaccessallowForm.js
<%@ page language="java" %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<%@ taglib uri="/WEB-INF/struts-bean.tld" prefix="bean" %>
<%@ taglib uri="/WEB-INF/struts-logic.tld" prefix="logic" %>
<%@ page import="com.tcs.KIA.common.VO.TM_viewVO" %>
<%@ page import="com.tcs.KIA.common.VO.GL_nomineeaccessallowVO" %>
<%@ page import="java.util.ArrayList" %>
<html>
<head>
</head>
<body bgcolor="efefef">
<html:errors/>
<center>
<html:form action="/GL_nomineeaccessallowAC.do" enctype="multipart/form-data">
<%!
GL_nomineeaccessallowVO v=null;
ArrayList view=null;
String empid=null;
%>
<%empid=(ArrayList)request.getSession().getAttribute("empid");%>
<table cellpadding="2" cellspacing="1" border="0" align="center">
<tr bgcolor="#95B1FF">
<td><b>Employee ID</b></td>
<td><html:text property="empid"></td>
</tr>
<tr bgcolor="#95B1FF">
<td><b>Project Owner Employee ID</b></td>
<td><html:text property="ownerno"></td>
</tr>
</table>
<html:submit>Submit</html:submit>
<html:reset>Reset</html:reset>
</center>
</html:form>
</body>
</html>
Please help me find the error.

