FreshmenProgrammer
Programmer
I just want to say thanks in advance for answering this post.
The following code will set session variables from a JSP in mozilla but I get all nulls for the variables in IE.
Does anyone know why that happens. Thank you.
I think scriplets work but I was told to stay away from them in views. Thank you
The following code will set session variables from a JSP in mozilla but I get all nulls for the variables in IE.
Does anyone know why that happens. Thank you.
I think scriplets work but I was told to stay away from them in views. Thank you
Code:
<c:set var="app" scope="session" value="${param.app}"/>
<c:set var="callingURL" scope="session" value="${header.referer}"/>
<c:set var="callingIP" scope="session" value="${pageContext.request.remoteAddr}"/>
<c:set var="sessionId" scope="session" value="${pageContext.request.requestedSessionId}"/>