Attempt to clear a buffer thats already been flushed???
843835Aug 13 2002 — edited Aug 13 2002hi i can't understand why this code is giving me error..
HttpSession aSession = request.getSession(true);
String destination = "/login.jsp?returnPage=/practice/reviewcontent.jsp";
try{
if(aSession.getValue("userId") == null) {
%>
<jsp:forward page="<%= destination %>" />
<%
}
%>
thank you