Illegal Start of Expression
Pls help
I get an error on my jsp page as this when I try to retrieve datavalues
action_jsp.java:397: illegal start of expression
out.print(subject_ar=);
^
What does this mean?
Pls help
I get an error on my jsp page as this when I try to retrieve datavalues
action_jsp.java:397: illegal start of expression
out.print(subject_ar=);
^
What does this mean?
in a jsp instead of out.print you should use scriptlets tags, like <%=subject_ar%>
i, Thanks...I solved that one