I came from the world of PHP, where declaring a function in the middle of a php page is pretty simple. I tried to do the same in JSP:
public String getQuarter(int i){ String quarter; switch(i){ case 1: quarter = "Winter"; break; case 2: quarter = "Spring"; break; case 3: quarter = "Summer I"; break; case 4: quarter = "Summer II"; break; case 5: quarter = "Fall"; break; default: quarter = "ERROR"; } return quarter; }
I get the following error:
An error occurred at line: 20 in the jsp file: /headers.jsp Illegal modifier for the variable getQuarter; only final is permitted return;
function jsp
Nathan H May 05 '09 at 9:13 p.m. 2009-05-05 21:13
source share