Hi,
I am using this statement exactly in my JSP page.
But when i view the equivalent servlet generated, it is like this :
And the second import is always getting to the end of the first import statement so that it is also included as a part of the single line comment '//'. This happens with all the JSP imports.
Could anyone figure out where the problem lies ... Its really urgent.
Many Thanks for any help .
I am using this statement exactly in my JSP page.
Code:
<%@ page import="java.util.*, java.lang.*" %>
Code:
import java.util.*; //[ /hrms/budgetsAndCosts_HRMS.jsp; Line: 1] import java.lang.*; //[ /hrms/budgetsAndCosts_HRMS.jsp; Line: 1]
Could anyone figure out where the problem lies ... Its really urgent.
Many Thanks for any help .
Comment