This week's book giveaway is in the General Computing forum. We're giving away four copies of Arduino in Action and have Martin Evans, Joshua Noble, and Jordan Hochenbaum on-line! See this thread for details.
How would I code the below so that if session is null, it produces no errors. The below doesn't produce an error but in the ncf error log it give a null 500 servlet error. but the page is fine. Thanks <% String refURL = request.getHeader("referer"); out.println (refURL); if (refURL !=null) //if (session !=null) if (refURL.endsWith("one.jsp") ) { out.println("one.jsp"); %> <jsp:forward page="one.jsp"/>
<% } else { out.println("seesion is null"); <% } %>