You have now written a visualizer and successfully used a VCT on your
JSP page. You should be able to view an actual date and time in Page Designer.
Here is a sample JSP page with the VCT-related tags in
bold:
<HTML>
<HEAD>
<%@ taglib uri="/WEB-INF/lib/sample.jar" prefix="vct" %>
<%@ page
language="java"
contentType="text/html; charset=ISO-8859-1"
pageEncoding="ISO-8859-1"
%>
<META http-equiv="Content-Type" content="text/html; charset=ISO-8859-1">
<META name="GENERATOR" content="IBM® WebSphere® Studio">
<META http-equiv="Content-Style-Type" content="text/css">
<LINK href="theme/Master.css" rel="stylesheet" type="text/css">
<TITLE>index.jsp</TITLE>
</HEAD>
<BODY>
The current date and time is:
<vct:date/>
</BODY>
</HTML>