I have a problem while making a simple SSI. I call a dateservlet in my SHTML to show different time zones. But the problem is that once I pass a parameter the time is set for that particular Zone and it does not change. That seems strange. Could anybody explain it ? this example is from Orelliy's Servlet book : The code for SHTML is : <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN"> <html> <head> <title>Server Sider Include Example</title> </head> <body>
<h1>The plain Time is....</h1> <SERVLET CODE=DateSsi> </SERVLET> </p> <h1>The PST Time is...............</h1> <SERVLET code=DateSsi > <PARAM NAME=zone VALUE="CET"> </SERVLET> </P>
<P> <h1>The GMT Time is....</h1> <SERVLET CODE=DateSsi > <PARAM NAME=zone VALUE="GMT"> </SERVLET> </P> <P> <h1>The CET Time is....</h1> <SERVLET CODE=DateSsi> <PARAM NAME=zone VALUE="EST"> </SERVLET> </P>