Hi All,
In the below code i want to add date field after Source account no. Pls advise me the syntax for adding date field which gives me today date,
Rgds,HTML Code:<%@ page contentType="text/html; charset=UTF-8"%> <%@ taglib prefix="s" uri="/struts-tags"%><html> <head> <meta http-equiv="Content-Type" content="text/html; charset=ISO-8859-1"> <title>Inter Bank Payment Transfer Form</title> </head> <body> <table> <s:form action="interbankpay.action" method="post"> <h1> Inter Bank Payment Transfer Details </h1> <s:textfield name="sibaccno" label="Source Account No." /> <s:textfield name="destamt" label="Transfer Amount" /> <s:textfield name="destcurrency" label="Transaction Currency" /> <s:textfield name="destbankname" label="Destination Bank Name" /> <s:textfield name="destbankbrname" label="Destination Bank Branch Name" /> <s:textfield name="destaccno" label="Destination Bank Account No" /> <s:textfield name="destifsc" label="Destination Bank IFSC Code" /> <s:textfield name="destaddinfo" label="Additional Information" /> <s:submit value="Submit Details" /> </s:form> </table> </body> </html>
Rajiv


LinkBack URL
About LinkBacks
Reply With Quote