arravalli12
Programmer
I am calling java script function on change and this works good. The problem I have is I do not want to capture changed records if the changed record has the same value as previous one.Currently say the initial record is 0 and I put 00, this record is captured and when it updates, it changes the flag to 'Y'. I do not want this to happen if record is same as before.
Any idea how to do this?
<td align="center"><input name="txtNum<%= intRecID %>" type="text" onChange="RecUpdate('<%=intRecID %>')" value="<%=trim(Recordset1.Fields.Item("FAMILY_CDE").Value)%>" size="3" maxlength="3"></td>
Any idea how to do this?
<td align="center"><input name="txtNum<%= intRecID %>" type="text" onChange="RecUpdate('<%=intRecID %>')" value="<%=trim(Recordset1.Fields.Item("FAMILY_CDE").Value)%>" size="3" maxlength="3"></td>