Hi,
I have a main JSP page where header, and two more JSP pages are included dynamically like:
In main.jsp page
<%@ include file="mainheader.jsp" %>
Now in the main.jsp page, there are some variables declared
like:
<%
String screen=null;
String sort=null;
String where=null;
%>
which are later used in the included JSP like mainheader.jsp as
if (userType == "E" && !screen.equals("asnhome"))
{
String checkHacker = HttpHeaderParser.encodeStr
ing(where)
;
}
Now RAD 7 shows these (screen, where) as errors in the mainheader.jsp page?
This app was initially built with WAS 5.1.2
I am trying to convert it to WAS 6.1
What is the problem here?
Thanks.
_Esam
Start Free Trial