/* package whatever; // don't place package name! */
<%@ page language="java" contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"%>
Insert title here
<%
// get client locale
java.util.Locale locale = request.getLocale();
// get Dateformat for client's locale
java.text.DateFormat dateFormat =
java.text.DateFormat.getDateTimeInstance(
java.text.DateFormat.LONG,
java.text.DateFormat.LONG, locale);
%>
<%=dateFormat.format( new java.util.Date() ) %>