Expiring pages in JSC2?
I need to be able to have a page expire, when the user clicks the back button. How can I do that in JSC2? I ran across one other post, dated back to 2004 that says:
Could you modify the JSP page to include the following
lines andtry
<META HTTP-EQUIV="Pragma" CONTENT="no-cache">
<META HTTP-EQUIV=Expires CONTENT="now">
<%
response.setHeader("Pragma","No-cache");
response.setDateHeader("Expires", 0);
response.setHeader("Cache-Control","no-cache");
%>
Unfortunately, JSC2 doesn't like anything other than xml tags in the JSP code. Anyone have a workaround for me?
Thanks!!

