Hmmm.

This works:



<%@ page language="java" import="com.pancredit.tkbespoke.tjs.strutstest.form.* %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<html:html>
<head>
<title>Untitled Document</title>
<!--
<%=((AddExtraPersonDetailsForm)session.getAttribute("addExtraPersonInfoForm")).getDateOfBirth()
 %>
-->
</head>

<body bgcolor="#FFFFFF" text="#000000">
<p>Please enter the following customer details: </p>
<p>&nbsp; </p>
</body>
</html:html>




put it back to what it was and it doesn't work anymore, same error:



<%@ page language="java" import="com.pancredit.tkbespoke.tjs.strutstest.form.* %>
<%@ taglib uri="/WEB-INF/struts-html.tld" prefix="html" %>
<html:html>
<head>
<title>Untitled Document</title>
<!--
<%=((AddExtraPersonDetailsForm)session.getAttribute("addExtraPersonInfoForm")).getDateOfBirth()
 %>
-->
</head>

<body bgcolor="#FFFFFF" text="#000000">
<p>Please enter the following customer details: </p>
<html:form action="/saveExtraPersonDetails.do" focus="dateOfBirth">
  <table width="39%" border="0">
    <tr>
      <td width="24%">Date of Birth:</td>
      <td width="76%">
        <html:text property="dateOfBirth" size="30"/>
      </td>
      <td width="24%">Marital status:</td>
      <td width="76%">
        <html:text property="maritalStatusID" size="30"/>
      </td>
    </tr>
    <tr>
      <td width="24%">&nbsp;</td>
      <td width="76%">
        <html:submit>
          <input type="submit" value="Submit">
        </html:submit>
      </td>
    </tr>
  </table>
</html:form>
<p>&nbsp; </p>
</body>
</html:html>

Eh?

Tim.




--
To unsubscribe, e-mail:   <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>

Reply via email to