This was previously fixed with Update. I asked to make sure that it was fixed with Input but that has not happened.

Because I do not have access to the demo/demo database I have added a date field to the scott/tiger emp table.

The following example will not allow me to input a date into oracle. Please fix ASAP.

Thanks

<%@ Page %>
<HTML>
<HEAD>
<Title>Savvis Communications</Title>
</HEAD>
<BODY BGCOLOR="white" TEXT="black" LINK="black" ALINK="white" VLINK="black">
<script language="vb" runat="server">
Sub Page_Load(Source as Object, E as EventArgs)

Dim Contracts_Add As New Tornado.Z()
With Contracts_Add
.dbMode = "ty=dual-horiz|sysind=t"
.dbSkin = "Plain"_
.dbDBType="Oracle"
.dbDSN = "Provider=MSDAORA.1;User ID=scott; Password=tiger; data source=siebel_report"
.dbSQL = "Select * from emp"
.dbGridDisplayFlds = "EMPNO,ENAME,HIREDATE"
.dbEditaddFlds = "fi= EMPNO,fi=ENAME,fi=MGR,fi=SAL,fi=COMM,fi=DEPTNO,fi= HIREDATE|ty=TextCalendar,fi=RELEASEDATE|ty=TextCal endar"
.dboptions="DateFormat=dd-MMM-yyyy"
.dbEditDateFormat = "dd-MMM-yyyy"
.dbCalendar = "Mask=dd-MMM-yyyy"
.dbNavigationItem = "top,bottom,prev,next,add,download"
.dbBlankText = ""
.dbBookMark = "emp;0"
.ASPdbNET
End With

End Sub

</script>
</FONT>
</BODY>
</HTML>