i have two file abc.jsp & def.jsp. in abc.jsp, it contains this code:
<%
String selectedCourse = request.getParameter("course");
int count = 0;
if(selectedCourse.equals("PHP")){
count = count + 1;
}
%>
i want this count value in def.jsp, so how can i pass this value?