Hi,
I have following code in a
JSP file and I want the count to increment with "cookies turned OFF" in the Browser in other words what code I need to insert to implement URL Rewriting for the following code.....
<%
Integer count =(Integer)session.getAttribute("COUNT");
if(count==null)
{
count = new Integer(1);
session.setAttribute("COUNT",count);
}
else
{
count=new Integer(count.intValue()+1);
session.setAttribute("COUNT",count);
}
out.println("The count is "+count);
%>