Link to home
Start Free TrialLog in
Avatar of keepworking
keepworking

asked on

Invalid character constant???????????

org.apache.jasper.JasperException: Unable to compile class for JSP

An error occurred at line: 29 in the jsp file: /testing.jsp
Generated servlet error:
Invalid character constant


there is nothing in line 29 but <%

what does it mean? --Invalid character constant
any hint to find real error?

thanks
ASKER CERTIFIED SOLUTION
Avatar of fargo
fargo

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Avatar of keepworking
keepworking

ASKER

yes, I have the ending.
code is too long ....

thanks fargo
hi, fargo:

thanks, I found error in code.

if (name.equals(' '))  //error here

should be if (name.equals(" "))  //error gone

thanks